s.resources = 'Pod/Assets'
xib文件显示在我的工作区中的可可pod的Development Pods组中.我正试图像这样访问xib.
[[NSBundle mainBundle] loadNibnamed:@"LabeledTextFIEldVIEw" owner:self options:nil];
但我得到了以下崩溃
*** Terminating app due to uncaught exception 'NSInternalinconsistencyException',reason: 'Could not load NIB in bundle: 'NSBundle </Users/jeff.wolski/library/Application Support/iPhone Simulator/7.1/Applications/775EB653-519B-4FCF-8CD9-92311E205598/LT-Components-iOS.app> (loaded)' with name 'LabeledTextFIEldVIEw''
为什么捆绑中找不到xib文件?
解决方法 问题是你的资源文件没有被包含在mainBundle中你应该看一些NSBundle
docs并使用类似bundleForClass:来获取正确的bundle来加载xib. [NSBundle allBundles的输出也可能提供信息. 总结 以上是内存溢出为你收集整理的ios – 如何从我的cocoapod加载xib文件?全部内容,希望文章能够帮你解决ios – 如何从我的cocoapod加载xib文件?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)