0

我正在开发一个产品存储应用程序,需要在其中实现一个 UIStepper。问题是我不能像我想要的那样垂直放置它。

那么有人知道我可以做到这一点吗?

4

1 回答 1

1

您应该能够修改转换:

stepper.transform = CGAffineTransformMakeRotation(M_PI / 2.0);

编辑:

我现在看到这对 IB 来说是个问题。我经常以编程方式创建我的视图,这似乎不是问题:

UIStepper *stepper = [[UIStepper alloc] initWithFrame:CGRectMake(150, 150, 27, 94)];

// this doesn't even have a problem:
UIStepper *stepper = [[UIStepper alloc] init];

这似乎只是IB的问题。事后设置框架似乎也无济于事。

于 2013-09-10T16:50:04.107 回答