2010-07-23 57 views
1

如何使用UITableViewCellStyleValue1單元格在我的數據源中創建項目?我必須創建自己的自定義單元格嗎?我在示例目錄中沒有看到任何內容。Three20 UITableViewCellStyleValue1

感謝, 豪伊

回答

-1

使用UITableViewCellStyleValue1的一點是,您使用預先定義的佈局,所以沒有不使用自定義佈局。

例如:加入

// Customize the appearance of table view cells. 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 

    static NSString *CellIdentifier = @"Cell"; 

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
    if (cell == nil) { 
     cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease]; 
    } 

    // Configure the cell. 
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; 

    cell.textLabel.text = @"SettingLabel"; 
    cell.detailTextLabel.text = @"SettingValue"; 

    return cell; 
}