I've build a custom cell with IB, and display it on a tableView
, that doesn't cover the whole window.
I set up a toolbar
and gave it a button, which toggles the isEditing
attribute and the buttons title. I also made the if(!self.editing)
in the didSelectRowAtIndexPath
.
I get the feedback, that when the button is hit, I am in editing mode, but my custom cells don't show the delete-sign on the left. If I swipe a cell, the Delete button on the right appears, but the App crashes, if I push that button, but I'll address that later on, just thought I'd say this, in case that leads you to the mistake I made..
I've read, that it may happens that it doesn't display the lefthanded delete sign, if I don't assign my custom cell to the cell.contentview
in cellforRowAtIndexPath
. I tried, and got an error.
This is my first time with custom cells made in IB, so please bare with me, if I did a stupid mistake.
The code in cellForRowAtIndexPath
, where I assign the custom cell:
static NSString *CellIdentifier = @"CustomCell";
CustomCell *cell = (CustomCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
for (id currentObject in topLevelObjects){
if ([currentObject isKindOfClass:[UITableViewCell class]]){
cell = (CustomCell *) currentObject;
break;
}
}
}
// some more setup and stuff
return cell;
Thanks for any help!
To make a custom cell create a subclass of UITableViewCell. Make a nib with a view and connect an outlet to it:
Override initWithStyle: reuseIdentifier: method and load the nib there. Add the custom view to the cell's content view:
Then in the
cellForRowAtIndexPath
code you simply call:As my ViewController is a subclass of UIViewController, not UITableViewController, I would have needed to make the Edit button toggle like this:
Instead of
Hope that helps someone else too..