我基本上和this question有同样的问题。但猜猜怎么了?那个问题没有任何好的答案。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if([indexPath row] == 0){
UITableViewCell* aCell = [tableView dequeueReusableCellWithIdentifier:@"SwitchCell"];
if( aCell == nil ) {
aCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"SwitchCell"];
aCell.textLabel.text = @"Colors";
aCell.selectionStyle = UITableViewCellSelectionStyleNone;
/*
UISwitch *switchView = [[UISwitch alloc] initWithFrame:CGRectZero];
aCell.accessoryView = switchView;
[switchView setOn:NO animated:NO];
[switchView addTarget:self action:@selector(switchChanged:) forControlEvents:UIControlEventValueChanged];
*/
UIStepper *stepperView = [[UIStepper alloc] initWithFrame:CGRectZero];
NSLog(@"The stepper is %@", stepperView);
aCell.accessoryView = stepperView;
[stepperView setMaximumValue:10];
[stepperView setMinimumValue:0];
[stepperView addTarget:self action:@selector(stepperChanged) forControlEvents:UIControlEventValueChanged];
NSLog(@"The stepper is %@", stepperView);
}
return aCell;
}
UITableViewCell *aCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"SwitchCell"];
NSString *s = @"foo";
s = [s stringByAppendingFormat:@"%d", [indexPath row]];
aCell.textLabel.text = s;
return aCell;
}
因此,如果我将代码切换到注释掉的代码,那就可以了(显示UISwitch)。所以我试图做的就是用UIStepper替换UISwitch,它只是没有显示出来。我讨厌Objective-c。
哦,这两个打印行都显示值为(null)。我创建它之后,它是空的吗?
编辑:iOS 5.0。我觉得答案可能与此有关:
NSLog(@"%@", [[UISwitch alloc] init]);
时不为空
NSLog(@"%@", [[UIStepper alloc] init]);
为空。
答案 0 :(得分:1)
尝试通过以下方法创建UIStepper:
UIStepper* stepper = [[UIStepper alloc] init];
stepper.frame = CGRectMake(220, 10, 100, 10);
[cell.contentView addSubview: stepper];
将步进器放在表格视图单元格的右侧。
我找到了这个答案in this related question。
答案 1 :(得分:0)
在iOS 5.0中编译的代码,但模拟器适用于iPhone 4.3。所以iPhone不知道UIStepper是什么,但知道UISwitch是什么。为什么它不会导致事情崩溃(这可能为我节省了很多时间)是一个谜。