My app features a UIWindow (inside of the AppDelegate?). Amazingly, (by mostly good luck), I’ve managed to get a NIB file to display inside of my AppDelegate’s UIWindow. The resulting user interface which is displayed from my NIB file is comprised of three controls:
- a UIView which serves as a sort of “background” (called “MainView”)
- a UITextView on top of MainView
- a UITableView, also onto top of MainView, located geographically below the UITextView
I’ve spent the last month trying to populate that Table. Now I’m asking here.
Please help.
create a UITableViewController subclass, then you need to set it as the datasource and delegate of the tableView, once there you just need to fill out the appropriate methods.