ipad 和 iphone 的 UIlabel 文本对齐

发布于 2024-11-06 09:50:30 字数 50 浏览 0 评论 0原文

我正在开发一款具有一个标签的通用应用程序。当我旋转屏幕时,标签文本对齐方式会变得不同。

I am working on a universal app which has one label. When I rotate the screen, the label text alignment becomes different.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

亣腦蒛氧 2024-11-13 09:50:30

确保正确设置 UILabel 的自动调整大小属性

Make sure you set the auto-resizing property for the UILabel properly

魔法唧唧 2024-11-13 09:50:30
- (void) handleRotations:(UIRotationGestureRecognizer *)paramSender{
 if (self.helloWorldLabel == nil){
}
return;
/* Take the previous rotation and add the current rotation to it */
self.helloWorldLabel.transform = CGAffineTransformMakeRotation(self.rotationAngleInRadians +
paramSender.rotation);
/* At the end of the rotation, keep the angle for later use */ if (paramSender.state == UIGestureRecognizerStateEnded){
}
self.rotationAngleInRadians += paramSender.rotation;
- (void) handleRotations:(UIRotationGestureRecognizer *)paramSender{
 if (self.helloWorldLabel == nil){
}
return;
/* Take the previous rotation and add the current rotation to it */
self.helloWorldLabel.transform = CGAffineTransformMakeRotation(self.rotationAngleInRadians +
paramSender.rotation);
/* At the end of the rotation, keep the angle for later use */ if (paramSender.state == UIGestureRecognizerStateEnded){
}
self.rotationAngleInRadians += paramSender.rotation;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文