I'm quite new to ipod programming, so be patient lol.
Im trying to have buttons in a cellView that will have one of 2 values for each cell, a + and a -. Meaning, the button will show +, when you click it, it jumps to -.
I've managed to get the buttons to work and change the underlying data, but I'm running in to trouble when redrawing the table.
I added as a comment where I need to change the text for the button to the source code. Can this be done, or do I have to build a custom uitableviewcell?
Tia, Stefano.
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger section = [indexPath section];
NSUInteger row = [indexPath row];
//some code
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
SectionsTableIdentifier ];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:SectionsTableIdentifier] autorelease];
UIImage *buttonUpImage = [UIImage imageNamed:@"button_up.png"];
UIImage *buttonDownImage = [UIImage imageNamed:@"button_down.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(0.0, 0.0, buttonUpImage.size.width, buttonUpImage.size.height);
[button setBackgroundImage:buttonUpImage forState:UIControlStateNormal];
[button setBackgroundImage:buttonDownImage forState:UIControlStateHighlighted];
if (some condition) [button setTitle:@"+" forState:UIControlStateNormal];
else [button setTitle:@"-" forState:UIControlStateNormal];
[button addTarget:self action:@selector(buttonTapped:) forControlEvents:UIControlEventTouchUpInside];
cell.accessoryView = button;
}
if (someCondition) {
cell.textLabel.text = @"text1";
}else {
cell.textLabel.text = @"text2";
}
//I NEED TO CHANGE THE TEXT FOR THE BUTTON HERE.
return cell;
}