将 UITextField 放置在视图的中心
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以直接将其指定为所需视图的中心:
You can directly assign it the center of the desired view:
其中 someView 是 userNameField 的超级视图。
Where someView is the superview of userNameField.
为什么不使用视图的 center 属性?
Why not use the view's center property?