自定义tableviewcell但是给cell里的label赋值后还是nil

 我来答
杜爷1号
2015-07-20 · 知道合伙人软件行家
杜爷1号
知道合伙人软件行家
采纳数:4973 获赞数:9186
毕业于福建农林大学,本科学士学位。从事IT行业3年,曾参与过多个大型项目的需求调研、软件研发。

向TA提问 私信TA
展开全部
  这个是自定义的cell。label是在xib里创衡锋建的
@interface MapTableCell : UITableViewCell{
UILabel *poiNO;
UILabel *poiName;
UILabel *poiAddress;
UIImageView *poiImageView;
}
@property (nonatomic ,retain) IBOutlet UILabel *poiNO;
@property (nonatomic ,retain) IBOutlet UILabel *poiName;
@property (nonatomic ,retain) IBOutlet UILabel *poiAddress;
@property (nonatomic ,retain) IBOutlet UIImageView *poiImageView;
@end

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellWithIdentifier = @"TableCellIdentifier";
MapTableCell *cell = (MapTableCell *)[tableView dequeueReusableCellWithIdentifier:CellWithIdentifier];
if (cell == nil) {
cell = [[MapTableCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellWithIdentifier];
}

NSUInteger row = [indexPath row];
BMKPoiInfo *info = [_poiInfoList objectAtIndex:row];
cell.poiName.text = [NSString stringWithFormat:@"%lu%@",(unsigned long)row,info.name];
cell.poiAddress.text = [info.city stringByAppendingString:info.address];
return cell;
}
希望能帮到你,如果满意,咐尺晌请记得采纳哦困旦~~~
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式