[selectorView setFrame:CGRectOffset([selectorView frame], 0, -selectorView.frame.size.height)]
在上面的代码中,我想更改子视图的Y轴值,因为它从屏幕顶部可见,并隐藏了我的标题和搜索栏。我想将它设置在搜索栏的下方。
我该怎么做?
可见度之前
子视图可见后
答案 0 :(得分:0)
试试这个:
[selectorView setFrame:CGRectMake(<CGFloat x> , <CGFloat y>, <CGFloat width>, <CGFloat height>)];
希望它适合你