안드로이드 개발자가 iOS 개발하며 정리하게 된 비교표
계속 업데이트 됨 (11.23 현재)
용어 비교
| Android | iOS |
|---|
| Activity | ViewController |
| Fragment | ContainerView |
| View | View |
| ListView | TableView |
| RecyclerView | TableView, CollectionView |
| TextView | Label |
| EditText | TextField, UITextView |
| Spinner | PickerView |
| SharedPreference | UserDefaults |
| ProgressBar | ActivityIndicator |
| 9-patch image | strech image |
이미지 설정
| Android | iOS |
|---|
| centerCrop | Aspect Fill & Clip to Bounds |
화면 전환
| Android | iOS |
|---|
| startActivity | performSegue, present |
옵저버 패턴
| Android | iOS |
|---|
| ViewModel & LiveData, EventBus, Broadcast ... | NotificationCenter |