子View的位置是如何设置的?
我正在使用标准的 facebook 连接按钮和方法
FBLoginButton *loginButton = [[[FBLoginButton alloc] init] autorelease];
[self.view addSubview: loginButton];
,它把它放在我不想要的地方。如何设置子视图位置?
I am using the standard facebook connect button with the method
FBLoginButton *loginButton = [[[FBLoginButton alloc] init] autorelease];
[self.view addSubview: loginButton];
and It places it where I dont want it. How can I set that subviews location?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
访问视图的
frame
属性:Access the view's
frame
property:您可以使用 setFrameOrigin: 来设置视图相对于其父视图的原点:
You set a view's origin relative to their parent view using
setFrameOrigin:
与其他 UIView 一样,您可以使用其框架属性来指定其大小和位置。
您还可以使用 center 属性来重新定位控件。
Like every other UIView, you can use its frame property to specify its size and position.
You can also use the center property to just reposition the control.