如何在ios中单击更改tableView单元格按钮图像

时间:2014-04-09 11:17:57

标签: ios objective-c uitableview

可能重复:

how to change tableView Cell button on click in iphone

我在表格视图单元格中有按钮,使用此功能设置背景图像。

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
                             SectionsTableIdentifier];

    cell.textLabel.text = self.names[self.keys];
    if (cell.accessoryView == nil) {
        UIImage *buttonUpImage = [UIImage imageNamed:@"button_up.png"];
        UIImage *buttonDownImage = [UIImage imageNamed:@"button_down.png"];
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        [button setBackgroundImage:buttonUpImage
                          forState:UIControlStateNormal];
        [button setBackgroundImage:buttonDownImage
                          forState:UIControlStateHighlighted];
        [button setTitle:@"Send" forState:UIControlStateNormal];
        [button sizeToFit];
        [button addTarget:self
                   action:@selector(tappedButton:)
         forControlEvents:UIControlEventTouchUpInside];
        cell.accessoryView = button;

    }



    return cell;
}

Tapped Button的代码是:

- (void)tappedButton:(UIButton *)sender
{
    NSInteger row = sender.tag;
   // NSString *character = self.names[self.keys];
  /*  NSString *key = self.keys[indexPath.row];
    NSArray *nameSection = self.names[key];

    NSString *character = nameSection[indexPath];
   */


   UIAlertView *alert = [[UIAlertView alloc]
                          initWithTitle:@"Request Notification."
                          message:[NSString
                                   stringWithFormat:@"Friend Request Sent ."]
                          delegate:nil
                          cancelButtonTitle:@"OK"
                          otherButtonTitles:nil];
    [alert show];

  /*  UIImage *buttonUpImage = [UIImage imageNamed:@"button.png"];
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
     [cell.theSyncButton setImage:buttonUpImage forState:UIControlStateSelected];
    [button setBackgroundImage:buttonUpImage
                      forState:UIControlStateNormal];

    [button setTitle:@"Sent" forState:UIControlStateNormal];
     [button sizeToFit];
   */
}

现在我需要的是当用户点击表视图单元格中的“发送”按钮时,动态地将背景颜色和标题更改为“已发送”。如何才能获得此功能?

5 个答案:

答案 0 :(得分:2)

试试这个,

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    ....
    UIButton *button;
    if (cell.accessoryView == nil) {
        ...
        button = [UIButton buttonWithType:UIButtonTypeCustom];
        ....
        cell.accessoryView = button;
    }
    button.tag = indexPath.row;

    ...
}
tappedButton:

中的

- (void)tappedButton:(UIButton *)sender
{
     NSInteger row = sender.tag;
    UIImage *buttonUpImage = [UIImage imageNamed:@"button.png"];
    [sender setBackgroundImage:buttonUpImage
                      forState:UIControlStateNormal];

    [sender setTitle:@"Sent" forState:UIControlStateNormal];
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:0];
    [self.tableView beginUpdates];
    [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationFade];
    [self.tableView endUpdates];

}

答案 1 :(得分:2)

您好,您可以关注,

- (void)tappedButton:(UIButton *)sender
{
    [sender setBackgroundColor:[UIColor grayColor]];
    [sender setTitle:@"Sent" forState:UIControlStateNormal]; 

    UIAlertView *alert = [[UIAlertView alloc]
                      initWithTitle:@"Request Notification."
                      message:[NSString
                               stringWithFormat:@"Friend Request Sent ."]
                      delegate:nil
                      cancelButtonTitle:@"OK"
                      otherButtonTitles:nil];
     [alert show]; 
 }

答案 2 :(得分:1)

在你的IBAction方法tappedButton中你传递了用户点击的按钮("发送者"参数。)

更改"发件人"

的背景颜色和标题

答案 3 :(得分:1)

中使用所选的状态按钮
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    [button setTitle:@"Send" forState:UIControlStateNormal];
    [button setBackgroundImage:original_image forState:UIControlStateNormal];
    [button setTitle:@"Sent" forState:UIControlStateSelected];
    [button setBackgroundImage:selected_image forState:UIControlStateSelected];
}

在使用tappedButton()

选择的[sender setSelected:YES]函数集发件人中

这个approch的主要原因是你可以使用isSelected方法检测按钮的状态。

答案 4 :(得分:1)

 [sender setBackgroundColor:[UIColor whiteColor]];
((UIButton *)sender).titleLabel.text = @"title";