在我的应用程序中,我有一个tableview,我使用section而不是按行访问 我在部分部分使用了自定义视图,自定义视图包含几个标签
索引中的cellForRow,
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
{
viewOrderPage=[[ViewOrder alloc]init];
static NSString * cellIdentifier=@"Mytable";
UITableViewCell * cell;
if(cell==nil)
{
cell=[contentTable dequeueReusableCellWithIdentifier:cellIdentifier];
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
viewOrderPage=[[ViewOrder alloc]initWithFrame:CGRectMake(0, 0, 310, 60)];
viewOrderPage.tag=111;
[cell.contentView addSubview:viewOrderPage];
}
else
{
viewOrderPage=(ViewOrder *)[cell.contentView viewWithTag:111];
}
viewOrderPage.productName.text=@"aaa";
return cell;
}
但该值未显示在单元格中。
viewOrderPage is the object of the customview(ViewOrder) and productName is a label in the view
答案 0 :(得分:0)
修改代码..
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString * cellIdentifier=@"Mytable";
ViewOrder * cell= (ViewOrder *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(cell==nil)
{
[[NSBundle mainBundle] loadNibNamed:@"ViewOrder" owner:self options:nil];
cell=self.vieworder;
}
NSString * str=[NSString stringWithFormat:@"%@",[productArray objectAtIndex:indexPath.row]];
NSLog(@"%@",str);
cell.productName.text=str;
return cell;
}
希望它可以帮助你..