程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-如何點擊修改制定cell中的button?

ios-如何點擊修改制定cell中的button?

編輯:編程綜合問答
如何點擊修改制定cell中的button?

應用裡有分組表視圖,分為兩部分。第一個部分有一行,另一部分有5行。我在cell裡添加了按鈕。代碼如下:

 UIButton *newBtn=[UIButton buttonWithType:UIButtonTypeCustom];
    [newBtn setFrame:CGRectMake(5,10,35,30)];
    [newBtn setImage:[UIImage imageNamed:@"icon.png"] forState:UIControlStateNormal];
    [newBtn addTarget:self action:@selector(selector:)        forControlEvents:UIControlEventTouchUpInside];
    newBtn.tag=4;
    [cell.contentView addSubview:newBtn];

現在我想改變對應cell裡面button的圖片,我試了下面的方法:

UITableViewCell *cell=(UITableViewCell *)[sender superview];

    NSIndexPath *path=[self.mtableview indexPathForCell:cell];

不知道哪卡主了,沒反應。幫忙解決,謝謝~

最佳回答:


在你的selector裡面添加下面代碼:

- (void)selector:(id)sender {
  //自己添加代碼
  UIButton *button = (UIButton *)sender;
  [button setImage:[UIImage imageNamed:@"newicon.png"] forState:UIControlStateNormal];
  //自己添加代碼
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved