iOS вопросы и ответы для интервью
Связанные сравнения
Вопрос 46. What are the essential certificates for issuing and developing apps, either Android or iOS?
The certificate types are:
- Development Certificate
- Distribution Certificate
- Development and Distributing Certificates
Вопрос 47. What is ‘assign’ in iOS?
In iOS, ‘assign’ is used to create an orientation from one object to the other without raising the retain count of the source object.
Вопрос 48. Why is 'reuseIdentifier' used in iOS?
The ‘reuseIdentifier’ is used to group all the similar rows from UITableView.
Вопрос 49. How can you reduce the size of the App?
The three different methods to reduce app size are:
- Bit code
- On-demand Resource
- App Slicing
Вопрос 50. What is MVC? Tell about its implementation in iOS.
MVC (Model View Controller) is a design pattern that defines how logic will be separated when the user interface is implemented. In iOS, UIView is the base class provided by Apple for all views, and UIViewController is provided to support the Controller, which listens to events in a View and updates it when data changes.
Самое полезное по оценкам пользователей:
- What does KVO stand for?
- Which is the application thread from where UIKit classes should be used?
- What is iOS?