我有2个iOS项目。我们将它们称为A和B。A是一个图书馆项目,其中包含2种产品:


静态库
和捆绑文件有一些.xib文件


B是一个使用项目A的库和捆绑文件的应用程序项目。

项目A有两件事:一个表(定制的UIViewController类和一个.xib文件)和一个单元格(定制的UITableViewCell和.xib文件)

问题是:

项目B可以从库和捆绑软件中加载表,但是不能为该表加载单元格。

这是一个开源项目,我被困了几天,请帮帮我。
https://github.com/G3Feng/granpost-ios

错误:

2013-09-18 07:28:50.184 TabbedDemo[34408:c07] |cell| load bundle:NSBundle </Users/Feng/Library/Application Support/iPhone Simulator/6.1/Applications/359F9352-F3BA-4478-AA51-A182D8CFA4AA/TabbedDemo.app/GPResource.bundle> (not yet loaded)
2013-09-18 07:28:50.185 TabbedDemo[34408:c07] Unknown class articleListCell in Interface Builder file.
2013-09-18 07:28:50.204 TabbedDemo[34408:c07] Could not load the "commentbubble-01.png" image referenced from a nib in the bundle with identifier "(null)"
2013-09-18 07:28:50.206 TabbedDemo[34408:c07] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UITableViewCell 0x71598b0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key bottomBar.'
*** First throw call stack:
(0x1c97012 0x10d4e7e 0x1d1ffb1 0xb80e41 0xb025f8 0xb020e7 0x68f23 0xb2cb58 0x236019 0x10e8663 0x1c9245a 0x234b1c 0x2368da 0x39a0 0xd38fb 0xd39cf 0xbc1bb 0xccb4b 0x692dd 0x10e86b0 0x2293fc0 0x228833c 0x2288150 0x22060bc 0x2207227 0x22a9b50 0x2eedf 0x1c5fafe 0x1c5fa3d 0x1c3d7c2 0x1c3cf44 0x1c3ce1b 0x1bf17e3 0x1bf1668 0x18ffc 0x2b1d 0x2a45)
libc++abi.dylib: terminate called throwing an exception

最佳答案

这个终于解决了问题:https://stackoverflow.com/a/6092090/1571946

==>

这实际上与Interface Builder无关,这里发生的是Xcode并未从静态库中加载符号。

若要解决此问题,您需要将-all_load -ObjC标志添加到Other Linker Flags中的项目(可能还有目标)的Build Settings键中。

关于ios - 无法从静态库和捆绑包加载 subview 类和Xib,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18876715/

10-09 05:56