将 UITextField 放置在视图的中心

发布于 2024-09-26 18:00:07 字数 208 浏览 3 评论 0原文

我有一个 UITextField,我想将此字段置于视图的中心。有什么想法吗?

usernameField = [[UITextField alloc] initWithFrame:CGRectMake(0, 200, 200, 28)];

我想将其放置在视图的中心,而不是 CGRectMake(一些数字)

I have a UITextField and I want to center this field on the center of the view. Any ideas?

usernameField = [[UITextField alloc] initWithFrame:CGRectMake(0, 200, 200, 28)];

Instead of CGRectMake(some numbers) - I want to place it in the center of the view.

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

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

发布评论

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

评论(3

十二 2024-10-03 18:00:07

您可以直接将其指定为所需视图的中心:

usernameField = [[UITextField alloc] initWithFrame:CGRectMake(0, 200, 200, 28)];
usernameField.center = myView.center;

You can directly assign it the center of the desired view:

usernameField = [[UITextField alloc] initWithFrame:CGRectMake(0, 200, 200, 28)];
usernameField.center = myView.center;
樱花细雨 2024-10-03 18:00:07
userNameField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 28)];
userNameField.center = CGPointMake(CGRectGetWidth(someView.bounds)/2.0f, CGRectGetHeight(someView.bounds)/2.0f);

其中 someView 是 userNameField 的超级视图。

userNameField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 28)];
userNameField.center = CGPointMake(CGRectGetWidth(someView.bounds)/2.0f, CGRectGetHeight(someView.bounds)/2.0f);

Where someView is the superview of userNameField.

薄荷梦 2024-10-03 18:00:07

为什么不使用视图的 center 属性?

userNameField.center = parentViewField.center;

Why not use the view's center property?

userNameField.center = parentViewField.center;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文