在iPhone中设置子视图的Y轴值

时间:2012-01-16 11:54:01

标签: iphone objective-c ios

[selectorView setFrame:CGRectOffset([selectorView frame], 0, -selectorView.frame.size.height)]

在上面的代码中,我想更改子视图的Y轴值,因为它从屏幕顶部可见,并隐藏了我的标题和搜索栏。我想将它设置在搜索栏的下方。

我该怎么做?

可见度之前

enter image description here

子视图可见后

enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个:

[selectorView setFrame:CGRectMake(<CGFloat x> , <CGFloat y>, <CGFloat width>, <CGFloat height>)];

希望它适合你