Эй, ребята, пожалуйста, дайте мне знать, как я могу установить этот код действия в к действию UIButton ... Вот код:Как установить (TableView cellForRowAtIndexpath) активность в A Button?
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NSString *[email protected]"myIdentiFier";
myCell *cell=[tableView dequeueReusableCellWithIdentifier:myIdentiFier];
if(!cell){
//cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:myIdentiFier];
NSArray *nib=[[NSBundle mainBundle]loadNibNamed:@"myCell" owner:self options:nil];
for(id obj in nib){
if([obj isKindOfClass:[myCell class]]){
cell=(myCell *)obj;
break;
}
}
}
NSDictionary *diction=(NSDictionary*)[content objectAtIndex:indexPath.row];
[cell.contentView setBackgroundColor:[UIColor orangeColor]];
cell.empID.text=[diction objectForKey:@"empid"];
cell.empName.text=[diction objectForKey:@"empname"];
cell.designation.text=[diction objectForKey:@"empdesignation"];
cell.teamName.text=[diction objectForKey:@"empteam"];
return cell;
}
я хочу установить выше действия в моей кнопки ..
- (IBAction)displayRecord:(id)sender {
}
пожалуйста, скажите мне ...
что на самом деле вы ищете – Bhupesh
@Bhupesh независимо мой метод TableView делает я хочу, что он должен сделать с помощью кнопки действия .. – Deep
вы хотите добавить новую ячейку в виде таблицы? Для этого вам нужно вставить новую запись в свой источник данных i.e 'content' array в вашем случае. Как только это будет сделано, вызовите '[tableView reloadData]'. – Amar