我正在尝试将自定义UITableVieCell实现到我的TableView中。在单元格内有两个子视图,它们的属性都是错误的。
这是我的tableView:cellForRowAtIndexPath ::
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
ListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell) {
cell = [[ListCell alloc] initWithFrame:CGRectMake(0, 0, 320.0f, 70.0f)];
}
return cell;
}
以下是我的自定义Cell ListCell中的两个init-methodes:
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.frame = frame;
cellBack = [[ListCellBack alloc] initWithFrame:CGRectMake(0.0, 0.0, frame.size.width, frame.size.height)];
cellFront = [[ListCellFront alloc] initWithFrame:CGRectMake(0.0, 0.0, frame.size.width, frame.size.height)];
[self.contentView addSubview:cellBack];
[self.contentView addSubview:cellFront];
slideEnabled = YES;
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super init];
if (self) {
}
return self;
}
这就是解决方案:
这就是我的目标:
所以我自定义Cell的两个子视图得到了错误的帧数。 我几个小时都在苦苦挣扎!
提前致谢!