Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 UITextField,我想旋转它,使文本是垂直的。这是逆时针旋转 90 度。
如何在界面构建器中执行此操作,以便可以将其与其他资产正确对齐?
谢谢
我不相信这对于 Interface Builder 是可能的。但是,您可以在代码中执行此操作。在 viewDidLoad 中的文本视图上使用以下调用:
[aTextView setTransform:CGAffineTransformMakeRotation(-90* M_PI/180)];
您可能需要对框架进行一些调整才能使其定位正确。此外,视图的内部坐标系也将旋转。