UIStoryboard() 中的 nil 和 NSBundle 有啥区别?
Posted
技术标签:
【中文标题】UIStoryboard() 中的 nil 和 NSBundle 有啥区别?【英文标题】:What's the difference between nil and NSBundle in UIStoryboard()?UIStoryboard() 中的 nil 和 NSBundle 有什么区别? 【发布时间】:2015-10-28 17:59:05 【问题描述】:我已经看到这两个都被大量使用了,但我找不到有什么区别:
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
那么将 bundle 设置为 nil
或 NSBundle.mainBundle()
有什么区别?
【问题讨论】:
阅读UIStoryboard()
的文档。它告诉你。
@Senseful 文档很清楚。如果你通过nil
,它使用主包。 NSBundle.mainBundle()
代表什么?主包。
@rmaddy 哎呀,读错了,没关系。
【参考方案1】:
其实这两者没有区别。无论您指定nil
还是NSBundle.mainBundle()
都将引用主包。
包含故事板文件及其相关资源的包。 如果指定 nil,此方法会在主包中查找 当前申请。
参考:UIStoryboard Class Reference
bundle:
参数将在您需要从除 mainBundle()
之外的其他包访问信息时变得有用。例如,许多第三方库都附带了自己的包,用于包装该特定库使用的资源。因此,如果您想访问这些资源,您需要引用该捆绑包。
【讨论】:
以上是关于UIStoryboard() 中的 nil 和 NSBundle 有啥区别?的主要内容,如果未能解决你的问题,请参考以下文章