-1

嘿伙计们,请让我知道如何将此代码操作设置为 UIButton 操作...这是代码:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

NSString *myIdentiFier=@"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 {
}

请告诉我 ...

4

2 回答 2

0

只需您可以执行以下操作

- (IBAction)displayRecord:(id)sender {
           [yourTablename reloadData];
}
于 2013-05-30T12:52:22.637 回答
0

你可以打电话

[tableview reloadData]

比 cellForRowAtIndexPath 被调用。

于 2013-05-30T12:50:34.693 回答