我必須類: existsUserView和existUserCustomCell。如何通過UIButton傳遞參數
的代碼existUserView:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
ExistUserCustomCell *cell = (ExistUserCustomCell*)[tableView dequeueReusableCellWithIdentifier:@"ExistUserCustomCell"];
KidManager *kid = [self.kidsArray objectAtIndex:indexPath.row];
cell.kidName.text = kid.firstName;
if([kid.inside isEqualToString:@"1"]){
cell.kidStatus. text = @"some string";
}else{
cell.kidStatus.text = @"some string";
}
return cell;
}
代碼existUserCustomCell:
- (IBAction)reportMissing:(id)sender {
}
- (IBAction)callTeacher:(id)sender {
}
我需要從 'existUserView' 數據傳遞到 'existUserCustomCell' 兩個鍵上的功能,要知道行時我按他們。 我該怎麼做最好的方法?
爲什麼你需要細胞知道它的行?這很少需要,如果有的話。 – rmaddy
它是一個自定義單元格,即時通訊處理不同類.. – OshriALM
這不能回答我的問題。 – rmaddy