In xcode what is the difference between dragging a Table View vs dragging a Table View Controller on a view in a xib?
Same thing with dragging a Tab Bar vs a Tab Bar Controller?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A
UITableViewis a view that must be hooked up to a controller somewhere in order to control it’s contents, while aUITableViewControlleris a pre-built controller that you can subclass that has a table view.A tab bar needs a controller as well, and
UITabBarControllerprovides a pre-built controller. You can also build your own.