Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我也在使用UICollectionView标题和UISerach栏。现在我遇到了问题,我的标题出现在搜索栏的顶部。如何改变y位置
UICollectionView
UISerach
我想要UISearch酒吧然后是我的collectionview标题。但头顶不动。
UISearch
collectionview
您不小心将标题拖到搜索栏中,或者您可以通过进入实用程序并单击标尺来更改标题的 y 值,然后您将看到一个名为 view 的部分,并且会有 ay 并且您可以在那里更改 y 值. 如果以编程方式创建,那么您必须使用这行代码。
searchBar.frame = CGRectMake(x,y,width,height);
这设置了搜索栏的位置和宽度和高度,因此只需将 y 值更改为高于标题的值,因为 y 值从上到下。你用你命名的搜索栏替换 searchBar