Swift 关联Storyboard中的controller解决UICollectionView must be initialized with a non-nil layout parameter

Swift 关联Storyboard中的controller解决UICollectionView must be initialized with a non-nil layout parameter,第1张

概述在开发中会遇到已经写好的Storyboard中需要添加新的功能的时候,需要将Storyboard中的Controller实例化后才能进一步地 *** 作,不然会出现类似'UICollectionView must be initialized with a non-nil layout parameter'这种类似的错误,原因是工程中的类要调用Storyboard中的Controller,但是Storyb

在开发中会遇到已经写好的Storyboard中需要添加新的功能的时候,需要将Storyboard中的Controller实例化后才能进一步地 *** 作,不然会出现类似'UICollectionVIEw must be initialized with a non-nil layout parameter'这种类似的错误,原因是工程中的类要调用Storyboard中的Controller,但是Storyboard中的Controller却没有找到对应的类。因此解决的办法如下:

1.创建Storyboard中Controller对应的类对象,并将Controller和类关联,然后设置ID(我的CollectionVIEwController放在TabbarController中)

2.如果要调用则用如下代码:

<span >	</span>var photoVIEw = PictrueTabbarController()        photoVIEw = UIStoryboard(name: "Main",bundle: nil).instantiateVIEwControllerWithIDentifIEr("tabbar")
<span >	</span>as! PictrueTabbarController
总结

以上是内存溢出为你收集整理的Swift 关联Storyboard中的controller解决UICollectionView must be initialized with a non-nil layout parameter全部内容,希望文章能够帮你解决Swift 关联Storyboard中的controller解决UICollectionView must be initialized with a non-nil layout parameter所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1082553.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存