标签: objective-c iphone
我有一个加载视图的应用程序。我想将加载的视图定位在450pt y y cordinate中。怎么做。
此致 兰詹
答案 0 :(得分:13)
查看UIView的文档,特别是属性frame,bounds和center
frame
bounds
center
我假设您要添加子视图,因此您希望它在相对于父视图的坐标中。然后你使用框架。
CGRect r = [subView frame]; r.origin.y = 450.0f; [subView setFrame:r];
类似的东西。