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.
@jrturtons answer is correct but unfortunately there's a bug in iOS 5 (fixed in iOS 6) in conjunction with VoiceOver: rdar://11549999. The following category on
UITableView
fixes the issue. Just use-fixedDequeueReusableCellWithIdentifier:
instead of the normaldequeueReusableCellWithIdentifier:
. Of course, the NIB must be registered usingbefore (in
-viewDidLoad
).UITableView+Workaround.m: