일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- graphql
- URL(string:)
- subject
- @State
- init
- Operater
- NullObject
- Bug
- @EnvironmentObject
- RFC1738/1808
- dismiss
- RxSwift
- @Environment
- typeorm
- nonisolated
- ios14
- IOS
- operator
- Creating Operators
- SwiftUI
- init?
- Operators
- swift6
- nestjs
- Xcode
- NavigationLink
- vim
- RxCocoa
- SWIFT
- @Binding
- Today
- Total
목록Development/iOS 개발 (57)
Tunko Development Diary
padding은 4가지 방법으로 적용이 가능하다. 아래 3개의 함수가 정의되어있다. extension View { @inlinable public func padding(_ insets: EdgeInsets) -> some View @inlinable public func padding(_ edges: Edge.Set = .all, _ length: CGFloat? = nil) -> some View @inlinable public func padding(_ length: CGFloat) -> some View } Edge.set 종류 top: Edge.Set : View 상단 leading: Edge.Set : View 왼쪽 bottom: Edge.Set : View 하단 trailing: Edge.S..
이 글은 예시로 들기엔 너무 많은 조합이 있어서 최소한으로 정리했습니다. alignment : 정렬 alignment 대표적인 사용처는 두가지로 분류할 수 있습니다. 예시코드가 길어져서 뷰하나를 만들었습니다. //tunkoView(color: Color.red) struct tunkoView : View { let color : Color init(color : Color) { self.color = color } var body: some View { Text("Tunko").foregroundColor(Color.white).frame(width: 100, height: 100).border(Color.black, width: 1).background(color) } } Container(stack)..
Spacer : View 사이에 유연하게 공간 추가 Spacer Text 뷰아래 Spacer를 추가하면 VStack { Text("Tunko").foregroundColor(Color.white).frame(width: 100, height: 100).border(Color.black, width: 1).background(Color.blue) Spacer() } 위아래 다 추가하면 VStack { Spacer() Text("Tunko").foregroundColor(Color.white).frame(width: 100, height: 100).border(Color.black, width: 1).background(Color.blue) Spacer() } VStack { Spacer() Text("Tu..
VStack struct ContentView: View { var body: some View { VStack { Text("1").frame(width: 50, height: 50, alignment: .center) Text("2").frame(width: 50, height: 50, alignment: .center) Text("3").frame(width: 50, height: 50, alignment: .center) } } } HStack struct ContentView: View { var body: some View { HStack { Text("1").frame(width: 50, height: 50, alignment: .center) Text("2").frame(width: 50,..
Fierbase 등 프레임워크를 초기화해야 되는데 AppDelegate에서밖에 할 수 없는 상황이 나온다. 이때는 아래 코드로 처리하면 된다. import SwiftUI class AppDelegate: NSObject, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { print("application is starting up. ApplicationDelegate didFinishLaunchingWithOptions.") return true }..