在我的應用程序創建的,我已經採取了表一個UIViewController頁面。 通過定製我已經創建了一個附加的按鈕,表在該表的每個單元。如何讓表格單元格按鈕進行操作
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"CustomBuddy" owner:self options:nil];
cell = self.customCell;
self.customCell = nil;
}
cell.text = (NSString *)[names objectAtIndex:indexPath.row];
return cell;
}
,並添加動作添加按鈕
-(IBAction)addButtonClicked
{
NSLog(@"Add button clicked");
}
現在
在此添加按鈕我想的名字在細胞中。 我該怎麼做才能幫到我......