自定义标签不显示在自定义单元格中故事板

时间:2014-01-05 06:53:37

标签: ios uitableview storyboard

我查看了所有相关问题,但仍然无法使其正常运行。

我创建了一个自定义单元格.xib(foodCell.xib)并将其文件所有者设置为foodCell.h。我还将标识符设置为foodCell。

enter image description here

到目前为止,我在自定义单元格中的所有内容都是自定义标签 - priceLabel。我遇到的问题是我似乎无法为自定义标签设置值或在运行时显示它。

这是我的foodcell.h文件:

#import <Parse/Parse.h>

@interface foodCell : PFTableViewCell


@property (weak, nonatomic) IBOutlet NSObject *foodCell;

@property (weak, nonatomic) IBOutlet UILabel *priceLabel;


@end

这是我在tableViewController文件中配置自定义单元格的位置。所有其他label.text调用都可以正常工作,并显示图像。

我的NSLOG来电回复null

为什么我无法设置或显示此自定义标签?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object {
static NSString *CellIdentifier = @"foodCell";

foodCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[foodCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

}

// Configure the cell
cell.textLabel.text = [object objectForKey:@"foodName"];
cell.detailTextLabel.text = [object objectForKey:@"foodDescription"];
cell.imageView.file = [object objectForKey:@"foodImage"];
NSString *myString = @"TEST";
cell.priceLabel.text = myString; //[object objectForKey:@"foodPrice"];
NSLog(cell.priceLabel.text);
cell.detailTextLabel.numberOfLines=0; // line wrap
cell.detailTextLabel.autoresizingMask = UIViewAutoresizingFlexibleHeight;


return cell;

}

1 个答案:

答案 0 :(得分:3)

使用Nib

中的UITableView注册viewDidLoad
[self.tableView registerNib:[UINib nibWithNibName:@"foodCell" bundle:nil] forCellReuseIdentifier:@"foodCellIdentifier"];

然后在cellForRowAtIndexPath:创建如下的单元格。

 static NSString *CellIdentifier = @"foodCell";
 foodCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];