Выбранное состояние UIButton в UITableView

У меня было UIButton в каждой ячейке UITableView . Когда я касаюсь его, его состояние устанавливается на выбранный. Но когда я прокручиваю табличное представление так, что кнопка не видна, состояние устанавливается в нормальное состояние. Как я могу сделать так, чтобы UIButton оставалось выделенным?

Спасибо.

Редактировать: Вот код cellForRowAtIndexPath :

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

cell.selectionStyle = UITableViewCellSelectionStyleNone;

if (indexPath.row < [messagesArray count]) {

    Zprava *msgObj = [messagesArray objectAtIndex:indexPath.row];

    int width = 0;

    if ([[UIDevice currentDevice] orientation] == UIDeviceOrientationPortrait) {
        width = 320;
    } else {
        width = 480;
    }

    CGSize boundingSize = CGSizeMake(width, CGFLOAT_MAX);   
    CGSize requiredSize = [msgObj.mmessage sizeWithFont:[UIFont systemFontOfSize:17] constrainedToSize:boundingSize lineBreakMode:UILineBreakModeWordWrap];

    UIButton *background = [[UIButton alloc] initWithFrame:CGRectMake(10, 25, 300, requiredSize.height + 20)];
    [background setBackgroundImage:[[UIImage imageNamed:@"balloon.png"] stretchableImageWithLeftCapWidth:15 topCapHeight:15] forState:UIControlStateNormal];
    [background setBackgroundImage:[[UIImage imageNamed:@"selected-balloon.png"] stretchableImageWithLeftCapWidth:15 topCapHeight:15] forState:UIControlStateSelected];
    [background addTarget:self action:@selector(action:) forControlEvents:UIControlEventTouchUpInside];
    background.tag = msgObj.msgID;
    [[cell contentView] addSubview:background];
    [background release];

    UILabel *dateLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 285, 15)];
    [dateLabel setFont:[UIFont systemFontOfSize:12]];
    [dateLabel setLineBreakMode:UILineBreakModeWordWrap];
    [dateLabel setTextColor:[UIColor lightGrayColor]];
    [dateLabel setNumberOfLines:0];
    [dateLabel setTextAlignment:UITextAlignmentRight];
    [dateLabel setText:msgObj.mdate];
    [dateLabel setBackgroundColor:[UIColor clearColor]];    
    [dateLabel setOpaque:NO];
    [[cell contentView] addSubview:dateLabel];
    [dateLabel release];

    UILabel *messageLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 30, 275, requiredSize.height + 5)];
    [messageLabel setFont:[UIFont systemFontOfSize:17]];
    [messageLabel setLineBreakMode:UILineBreakModeWordWrap];
    [messageLabel setTextColor:[UIColor blackColor]];
    [messageLabel setNumberOfLines:0];
    [messageLabel setText:msgObj.mmessage];
    [messageLabel setBackgroundColor:[UIColor clearColor]]; 
    [messageLabel setOpaque:NO];
    [[cell contentView] addSubview:messageLabel];
    [messageLabel release];

}

return cell;

}
1
задан etolstoy 14 April 2014 в 14:57
поделиться

1 ответ

Сохраните состояния кнопок где-нибудь в вашей модели отдельно от табличного представления и снова установите состояние кнопок в методе cellForRowAtIndexpath: .

2
ответ дан 2 September 2019 в 22:19
поделиться
Другие вопросы по тегам:

Похожие вопросы: