how would i use UINibs to instantiate and use a UITableViewCell for a tableview in iOS5.0. I know there is a registerNib:forCellReuseIdentifier: in iOS5.0 that also needs to be used, but am not sure how to use it
Thanks in advance for any help on this
Steps 2 and 3 can be combined, so you would use the following line in viewDidLoad:
Then, in cellForRowAtIndexPath, if you want one of the cells from the nib, you dequeue it:
This either creates a new instance from the nib, or dequeues an existing cell.