I am a new iphone app developer.I want to know what is the difference between view and viewcontroller.
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
UIView
UIViewController
Are you familiar with the Model-View-Controller pattern? Before even starting iPhone development, you should be familiar with it. I recommend the book Cocoa Design Patterns. Trust me, it will help a lot in the long term.
ViewController - Main Screen
View - component that can be added to ViewController
A
UIViewController
instance manages a hierarchy ofUIView
instances.Read up on the Model-View-Controller pattern that embodies the design of most iOS apps.