Tableview单元格不显示数组中的单元格信息

时间:2014-07-28 09:38:35

标签: ios iphone uitableview

我的项目中有多个表,但我陷入了一种情况。 从我的一个数组中,我无法获得输出,并且我的tableview显示为空。 帮助我。

感谢

if (tableView==tableSide)
{

    static NSString *CellIdentifier = @"Cell1";
    UITableViewCell *cell1 = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if(cell1 == nil)
    {

        cell1 = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    }

    cell1.backgroundColor=[UIColor clearColor];
    cell1.textLabel.textColor=[UIColor redColor];
    cell1.textLabel.text=[arrSideBarMenu objectAtIndex:indexPath.row];
    cell1.selectionStyle = UITableViewCellSelectionStyleBlue;

    return cell1;
}

0 个答案:

没有答案