2011-12-15 89 views

回答

2

一做就是給UIStepper添加到每個細胞中的tableView一個子視圖方式:cellForRowIndexAtPath在TableViewController。例如:

- (UITableViewCell*) tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    static NSString* CellIdentifier = @"Cell"; 

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

     UIStepper* stepper = [[UIStepper alloc] init]; 
     stepper.frame = CGRectMake(220, 10, 100, 10); 
     [cell.contentView addSubview: stepper]; 
    } 

    return cell; 
} 

這將在您的表格的每個單元格的右側添加一個步進器。

+0

這對某些屏幕尺寸不起作用 – DaynaJuliana 2015-03-26 02:25:41

相關問題