我正在添加一个UIView作为每个tableviewcell的contentView的子视图,我遇到了一些重大问题。
我附上了它正在做的屏幕截图。 http://i44.tinypic.com/11kw0ms.jpg 每个细胞底部的那些黑条不应该在那里。
继承我的代码:
标题
@class CalendarCell;
@interface ...{
CalendarCell *calCell;
}
实施
#import "CalendarCell.h"
...In the cellForRowAtIndexPath method
cell.backgroundColor = [UIColor clearColor];
calCell = [[CalendarCell alloc]initWithNibName:@"CalendarCell" bundle:nil];
[calCell.view setFrame:CGRectMake(0, 0, 320, 60)];
[cell.contentView addSubview:calCell.view];
[calCell release];
return cell;
答案 0 :(得分:0)
增加细胞的高度。