当我在 Storyboard 中放入一个UIStepper
或UITableViewCell
以编程方式在单元格中制作步进器时,
UIStepper* stepper = [[UIStepper alloc] init];
stepper.frame = CGRectMake(0, 0, 100, 10);
[cell.contentView insertSubview:stepper atIndex:1000];
它不会在 iOS 7 中显示,但是当我在 iOS 6 中执行相同操作时,它可以工作。
为什么它在 iOS 7 中不显示?