1、創建UITableViewCell時,的模式用UITableViewCellStyleValue1時,透明度直接將UITableView的透明度設置以下就搞定拉,但是文字居中難以實現。
2、創建UITableViewCell時,的模式用UITableViewCellStyleDefault時,文字居中直接用
cell.textAlignment = UITextAlignmentCenter;
就搞定拉,但是只設置UITableView的透明度,背景透明難以實現
透明度具體實現代碼:
cell.opaque = NO;
cell.textLabel.backgroundColor = [UIColor clearColor];
[cell setBackgroundColor:[UIColor colorWithRed:1 green:1 blue:1 alpha:0.2]];
並且將UITableView的透明度設置一下就搞定拉。