我创建了一个单独的包含集合视图及其customView
的类,然后尝试将此Xib
加载到连接到customView
的控制器视图之一。视图已完全加载,但集合视图的最后一项隐藏在选项卡栏后面。
如果能找到解决办法那就太好了。
我的自定义视图看起来
最佳答案
试试这个
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
let bottomOffset: CGFloat = (tabBarController?.tabBar.frame.height)! // this your tabbar height you can replace with static number eg. 44
collectionView?.contentInset = UIEdgeInsetsMake(0, 0, bottomOffset, 0)
}
关于ios - 标签栏隐藏包含CollectionViewController的CustomView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44758707/