我需要一个像这个屏幕截图这样的表格布局
我正在使用UIStoryboard
和 ARC
屏幕:1
但我越来越像了
屏幕:2
滚动表格后,它会根据需要变成第一个屏幕,但最初类似于屏幕 2。
我在cellForRowAtIndexPath
方法中的代码是
UILabel *titleLabel = (UILabel *) [cell viewWithTag:1];
titleLabel.backgroundColor =[UIColor whiteColor];
if (indexPath.row % 2) {
NSLog(@"Odd Cell");
[titleLabel setFrame:CGRectMake(100.0f, 10.0f, 200.0f, 20.0f)];
} else {
NSLog(@"Even Cell");
[titleLabel setFrame:CGRectMake(20.0f, 10.0f, 200.0f, 20.0f)];
}
titleLabel
是通过 IB 在单元格上的标签,并且具有标签:1
我必须相应地设置标签的框架,然后在其中设置文本而不是文本对齐。
这就是为什么我设置titleLabel.backgroundColor =[UIColor whiteColor];