I'm trying to work out how to set the UITableViewCellStyle
when using the new methods in iOS 6 for UITableView
.
Previously, when creating a UITableViewCell
I would change the UITableViewCellStyle
enum to create different types of default cells when calling initWithStyle:
but from what I can gather, this is no longer the case.
The Apple documentation for UITableView
states:
Return Value: A UITableViewCell object with the associated reuse identifier. This method always returns a valid cell.
Discussion: For performance reasons, a table view's data source should generally reuse UITableViewCell objects when it assigns cells to rows in its tableView:cellForRowAtIndexPath: method. A table view maintains a queue or list of UITableViewCell objects that the data source has marked for reuse. Call this method from your data source object when asked to provide a new cell for the table view. This method dequeues an existing cell if one is available or creates a new one based on the class or nib file you previously registered.
Important: You must register a class or nib file using the registerNib:forCellReuseIdentifier: or registerClass:forCellReuseIdentifier: method before calling this method.
If you registered a class for the specified identifier and a new cell must be created, this method initializes the cell by calling its initWithStyle:reuseIdentifier: method. For nib-based cells, this method loads the cell object from the provided nib file. If an existing cell was available for reuse, this method calls the cell’s prepareForReuse method instead.
This is how my new cellForRowAtIndexPath
looks after implementing the new methods:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"cell_identifier";
[tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:cellIdentifier];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];
return cell;
}
The code I have so far works fine but always returns the default style. How can I change this so I can create cells with the other styles such as UITableViewCellStyleDefault
, UITableViewCellStyleValue1
, UITableViewCellStyleValue2
and UITableViewCellStyleSubtitle
?
I don't want to subclass UITableViewCell
, I just want to change the default type as I could do prior to iOS 6. It seems odd that Apple would provide enhanced methods but with minimal documentation to support their implementation.
Has anyone mastered this, or run in to a similar problem? I'm struggling to find any reasonable information at all.
I know you said you didn't want to create a subclass, but it looks inevitable. Based on the assembly code while testing in the iOS 6.0 simulator,
UITableView
creates new instances ofUITableViewCell
(or its subclasses) by performingIn other words, the style sent (
UITableViewCellStyleDefault
) appears to be hard-coded. To get around this, you will need to create a subclass that overrides the default initializerinitWithStyle:reuseIdentifier:
and passes the style you wish to use:Also, it might be better to send
registerClass:forCellReuseIdentifier:
inviewDidLoad
, instead of doing it every time a cell is requested:You can avoid an extraneous subclass by using the storyboard interface builder:
The new iOS 6.0
dequeueReusableCellWithIdentifier:forIndexPath:
does use those values when allocating new cells and returning them. (Tested on an iOS 6.0 compilation using Xcode 4.5.2)Bolot's answer is the correct. Simple and you don't need to create any XIB file.
I just wanted to update his answer for whoever is doing it using Swift instead of Objective-C:
dequeueReusableCellWithIdentifier
isn't deprecated so you aren't required to use the newdequeueReusableCellWithIdentifier:forIndexPath:
.Use the new way along with the appropriate register method (in viewDidLoad) if you are using a custom cell class but use the old way if you want to use one of the UITableViewCellStyle enums.
Another alternative that saves one file is to create a Nib and use
registerNib:forCellReuseIdentifier:
instead.Making the Nib is easy: Create a new .xib file in Interface Builder. Delete the default view. Add a Table View Cell object. Using the Attributes Inspector, change the style for the cell. (Here you also have the opportunity to customize the cell further by adjusting other attributes.)
Then in your table view controller's
viewDidLoad
method call something like:My solution to this is to call
initWithStyle: reuseIdentifier:
after I've obtained it using[self.tableView dequeueReusableCellWithIdentifier:@"cellId" forIndexPath:indexPath]
. After all,init
is just another selector, and the compiler makes no restrictions on calling it on an already initialised object. It will however complain about not using the result of calling init, so I do:I imagine this won't work in Swift...