我查看了所有相关问题,但仍然无法使其正常运行。
我创建了一个自定义单元格.xib(foodCell.xib)并将其文件所有者设置为foodCell.h。我还将标识符设置为foodCell。
到目前为止,我在自定义单元格中的所有内容都是自定义标签 - 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;
}
答案 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];