I want to ask a question about the UITableView of the objective C. I am writing a program and I would like to create the UI programmatically. However, I don't know how to display the table programmatically. I already have a NSMutableArray to store the displayed data. And I create a object UITableView *tableData;, what should I do for the next step? Thank you very much.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
after writing above code you have to implement delegate method of UITableView. these are delegate method of UITableView load
|
|||||||||||||
|
|
Something like this should do the trick (assuming this is running from within your view controller and you have a property set up for the table view):
Where you replace |
|||||||||
|
Your header file should be like the following:
In the viewLoad method of your class:
Your implementation file should be like the following:
|
|||
|
|