iOS UITableViewCell透明度 和 cell文字居中
来源:未知 责任编辑:责任编辑 发表时间:2015-03-01 01:34 点击:次
1、创建UITableViewCell时,的模式用UITableViewCellStyleValue1时,透明度直接将UITableView的透明度设置以下就搞定拉,但是文字居中难以实现。
p>2、创建UITableViewCell时,的模式用UITableViewCellStyleDefault时,文字居中直接用
p>cell.textAlignment = UITextAlignmentCenter;
p>就搞定拉,但是只设置UITableView的透明度,背景透明难以实现
p>透明度具体实现代码:
p>cell.opaque = NO;
p>cell.textLabel.backgroundColor = [UIColor clearColor];
p>[cell setBackgroundColor:[UIColor colorWithRed:1 green:1 blue:1 alpha:0.2]];
p>并且将UITableView的透明度设置一下就搞定拉。
p>
p>
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>