當(dāng)我們點擊某個cell時尖滚,會執(zhí)行下面這個方法,方法中調(diào)用另一方法執(zhí)行具體操作:
- (void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath {
if(0== indexPath.section) {
[selfbtnActionForUserSetting:self];
}
}
在下面方法中怎樣獲取剛剛選中的那個cell新博,并修改它的內(nèi)容呢?
- (void)btnActionForUserSetting:(id) sender {
NSIndexPath*indexPath = [self.tableViewindexPathForSelectedRow];
UITableViewCell*cell = [self.tableView cellForRowAtIndexPath:indexPath];
cell.textLabel.text=@"abc";
}