-1
我有一個UITableView,我得到一個UUIabel和一個UIButton customUITableViewCell,我想更改特定行的標籤文本值按下按鈕,在同一行。請幫我之後,我在iPhone很新。如何更改自定義UITableViewCell中的按鈕後按標籤文本
我有一個UITableView,我得到一個UUIabel和一個UIButton customUITableViewCell,我想更改特定行的標籤文本值按下按鈕,在同一行。請幫我之後,我在iPhone很新。如何更改自定義UITableViewCell中的按鈕後按標籤文本
請檢查您是否映射動作來回您的按鈕,並繼續與這個..
-(void)yourButtonClicked:(id)sender {
CustomCell *clickedCell = [[sender superView]superView];
NSindexPath *indexPath = [YourTableViewObject indexPathForCell:clickedCell];
NSLog(@"%d %d",indexPath.section,indexPath.row);
}
這裏你得到行爲您點擊的單元格。
Th你可以很容易地改變你的標籤文本..通過
clickedCell.yourLabel.text = @"Your string";