我試圖將子視圖添加到UITableView中的一個部分,它看起來像代碼是正確的,它不顯示任何內容,只是空白部分。下面是我使用的代碼:將子視圖添加到UITable
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
if(indexPath.section==0){
cell.textLabel.text [email protected]"<>";
}else if(indexPath.section==1){
if(indexPath.row==1){
cell.frame =CGRectMake(0,0, 100, 100);
[cell.contentView addSubview:page.view];
}
} else if(indexPath.section==2){
}
// Configure the cell.
return cell;
}
感謝名單提前..
什麼是'page'? 'page.view.frame'的價值是什麼? – 2011-06-02 08:36:32
它是一個類,其中有一個page.xib類..我試圖將xib的視圖添加到表部分.. – 2011-06-02 08:42:06