Xcode for Iphone中的表格创建

时间:2012-03-21 07:53:06

标签: iphone macos ipad

当我编写一个简单的代码来创建表时,我遇到_CGRect referenced From错误。我不知道如何解决这个错误。我甚至将CoreGraphics框架添加到我的项目中

static NSString *SimpleTableIdentifier  = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: SimpleTableIdentifier];
if (cell == nil)
{ 
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier: SimpleTableIdentifier] autorelease];
}

NSUInteger row = [indexPath row];
cell.text = [listData objectAtIndex:row];
return cell;

1 个答案:

答案 0 :(得分:0)

CGRectMake(0,0,widthOfCell,heightOfCell)

中的

cell initWithFrame

方法,我认为应该为你做。