gpt4 book ai didi

ios - 在父 UIView 中垂直居中 UILabel

转载 作者:行者123 更新时间:2023-11-29 02:13:32 25 4
gpt4 key购买 nike

如何在不改变 UILabel 的水平位置的情况下将 UILabel 在其父 UIView 中垂直(y 轴)居中?

下面不是它(它改变了 x 轴):

[self.label setCenter:CGPointMake(view.frame.size.width / 2, view.frame.size.height / 2)]

同样,我希望以 y 轴为中心。

最佳答案

CGPoint center = self.label.center;
center.y = view.frame.size.height / 2;
[self.label setCenter:center];

快速回答..

var center : CGPoint = self.titleLbl.center
center.y = self.frame.size.height / 2
self.titleLbl.center = center

关于ios - 在父 UIView 中垂直居中 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29017109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com