一个小问题我创建了一个自定义 UITablecell 但在单元格中它需要解析数据所以我连接IBOutlet UILabel *One;
到 UILabel 但是当我在做
One.text = @"Lorem..."; 出现错误显示我在 mijn viewController 中导入了 UITablecell.h。
**Use of undeclared identifier 'One'**
/
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
ViewControllerCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"ViewControllerCell" owner:nil options:nil];
for (UIView *view in views) {
if([view isKindOfClass:[UITableViewCell class]])
{
cell = (ViewControllerCell*)view;
}
}
}
One.text = @"Lorem...";
return cell;
}