2010-03-08 138 views

回答

15

//自定義表格視圖單元的外觀。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 

    static NSString *CellIdentifier = @"Cell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
    if (cell == nil) 
    { 
     cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease]; 
    } 
    [cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton]; 
    return cell; 
} 

[細胞setAccessoryType:UITableViewCellAccessoryDe​​tailDisclosureButton];

2
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton; 
相關問題