SWIFTUI/Grammar

SwiftUI : UIKit와 SwiftUI 구성요소 비교

서근 2021. 1. 24. 05:13
반응형

View and Controls

UIKit SwiftUI
UILabel Text
UITextField TextField
UITextField(isSecureTextEntry) SecureField
UIButton Button
UllmageView Image
UISwitch Toggle
UISlider Slider
UIStepper Stepper
UIPickerView Picker(WheelPickerStyle)
UISegmentedControl Picker(SegmentedPickerStyle)
UIDatePicker DatePicker
UITextView TextEditor (일반 문자열에만 해당)
UIStackView HStack(가로 방향), VStack(세로 방향)
UIScrollView ScrollView
UITableView(Plain) List
UITableView(Grouped) List(GroupedListStyle)
UICollection View  
UIProgressView
ProgressView (with a value)
UIActivityIndicatorView
ProgressView(without a value)

ViewControllers

UIKit SwiftUI
UIViewController View
UINavigationController NavigationView
UITabBarController TabView
UISplitViewController Navigation View
UITableViewController List
UICollectionViewController LazyVGrid / LazyHGrid
UIAlertController(actionSheet 스타일) .actionSheet / ActionSheet
UIAlertController(alert 스타일) .alert / Alert

 

읽어주셔서 감사합니다🤟