我的项目中有多个表,但我陷入了一种情况。 从我的一个数组中,我无法获得输出,并且我的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;
}