일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- swift documentation
- rxswift
- ios
- UICollectionView
- Refactoring
- combine
- 스위프트
- collectionview
- uitableview
- SWIFT
- UITextView
- ribs
- uiscrollview
- RxCocoa
- Human interface guide
- 리펙토링
- Protocol
- 리펙터링
- 클린 코드
- 애니메이션
- map
- swiftUI
- Xcode
- clean architecture
- Clean Code
- HIG
- 리팩토링
- Observable
- MVVM
- tableView
- Today
- Total
목록UIViewControllerRepresentable (3)
김종권의 iOS 앱 개발 알아가기
목차) SwiftUI의 기본 - 목차 링크 * cf) UIKit에서 SwiftUI 사용 방법은 이전 포스팅 글 (UIHostingController) 참고 SwiftUI에서 UIKit 사용 방법 UIView 관련 사용 - UIViewRepresentable UIViewController 관련 사용 - UIViewControllerRepresentable UIViewRepresentable 사용 방법 SwiftUI에서 UIKit에 있는 뷰를 사용할때 이용 makeUIView에 UIKit 인스턴스를 리턴 updateUIView은 SwiftUI에서 뷰가 업데이트 될때 불리는 메소드로, 이곳에서 delegate와 같은 처리 public protocol UIViewRepresentable : View where ..
UIVeiwControllerRepresentable UIKit의 ViewController 타입을 SwiftUI의 View 타입으로 변경하여 사용할 수 있는 기능 UIViewControllerRepresentable 프로토콜을 준수하는 구조체를 만들어서 사용 // UIViewControllerRepresentable 프로토콜 public protocol UIViewControllerRepresentable : View where Self.Body == Never { associatedtype UIViewControllerType : UIViewController func makeUIViewController(context: Self.Context) -> Self.UIViewControllerType f..
SwiftUI에서 UIkit 사용 방법 - UIView UIViewRepresentable 프로토콜을 구현하면 SwiftUI에서 UIView 사용 가능 @available(iOS 13.0, tvOS 13.0, *) @available(macOS, unavailable) @available(watchOS, unavailable) public protocol UIViewRepresentable : View where Self.Body == Never { associatedtype UIViewType : UIView func makeUIView(context: Self.Context) -> Self.UIViewType func updateUIView(_ uiView: Self.UIViewType, contex..