我正在開發一個具有如圖所示視圖的應用程序。 我有一個表格視圖。 我的問題是如何將我的聊天框單元格顯示給原始表格視單元格框架。 TableView單元框架問題
喜歡白色的盒子是將原始表格視圖單元格一些權
代碼: -
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
int row = [indexPath section];
UITableViewCell *startCell = [[[UITableViewCell alloc] initWithFrame:CGRectMake(10, 0, 200, 50) reuseIdentifier:CellIdentifier] autorelease];
UITableViewCell *durationCell = [[[UITableViewCell alloc] initWithFrame:CGRectMake(50, 0, 200, 100) reuseIdentifier:CellIdentifier] autorelease];
UITableViewCell *radiusCell = [[[UITableViewCell alloc] initWithFrame:CGRectMake(100, 0, 200, 150) reuseIdentifier:CellIdentifier] autorelease];
startCell.textLabel.text = @"Start:";
durationCell.textLabel.text = @"Duration:";
radiusCell.textLabel.text = @"radius";
if (row == 0)
{
return startCell;
}
else if (row == 1)
{
return durationCell;
}
return radiusCell;
}
貴細胞含有ImageView的? – Maulik
@maulik不,它不包含任何東西。 – Gypsa
嘗試使用switch開關(indexPath.row) – Maulik