当我将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中显示?