码迷,mamicode.com
首页 > 其他好文 > 详细

UITableViewCell的基本使用

时间:2015-03-16 16:32:50      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:uitableviewcell   cell居中   

//在cell = [[UITableViewCellalloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:identifier];
下设置cell文字居中

cell.textLabel.text =@"清除缓存";

cell.indentationLevel =12;

如图所示:

技术分享

//在cell = [[UITableViewCellalloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];

下设置cell文字居中

cell.textLabel.text =@"意见反馈";

cell.textLabel.textAlignment =NSTextAlignmentCenter;

如图所示:

技术分享


//设置cell右侧的文字

//在cell =[[UITableViewCellalloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:identifier];

cell.textLabel.text = @"新版本检测";

cell.detailTextLabel.text = @"V2.6.1";

如图所示:

技术分享



UITableViewCell的基本使用

标签:uitableviewcell   cell居中   

原文地址:http://blog.csdn.net/huanghaiyan_123/article/details/44306533

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!