https://github.com/flywo/SwiftUIPractice
自己寫的SwiftUI練習項目,各位看官關(guān)注一下。
SwiftUI的組件中,有很多與UIKit是類似的,常用的組件對照表如下:
| UIKit | SwiftUI |
|---|---|
| UITableView | List |
| UICollectionView | 沒有類似 |
| UILabel | Text |
| UITextField | TextField |
| UITextField的isSecureTextEntry=true | SecureField |
| UITextView | 沒有類似 |
| UISwitch | Toggle |
| UISlider | Slider |
| UIButton | Button |
| UINavigationController | NavigationView |
| UIAlertController的style為.alert | Alert |
| UIAlertController的style為.actionSheet | ActionSheet |
| UIStackView水平排列時 | HStack |
| UIStackView 垂直排列時 | VStack |
| UIImageView | Image |
| UISegmentedControl | SegmentedControl |
| UIStepper | Stepper |
| UIDatePicker | DatePicker |
| NSAttributedString | 沒有類似,用Text代替 |
- 另外,SwiftUI里有很多是UIKit沒有的組件。