How “Unknown class <MyClass> in Interface Builder file” error can be fixed with a line reads “[MyClass class]”?

房东的猫 提交于 2019-12-25 01:46:35

问题


I read the following answer, so I know that "Unknown class in Interface Builder file" error can be solved using the -ObjC linker option. (FYI, MyClass is in static library.)

https://stackoverflow.com/a/6092090/534701

I've also found that single line of [MyClass class] code in the App Delegate can handle the same problem without using -ObjC option. My Question is how come the code can work.

According to the answer that I've attached above, the error occurs because symbols in my static libraries are not loaded. Then, it means [MyClass class] makes the Linker to load the symbol at runtime? (which doesn't make sense)


回答1:


The linker will try to reduce the final binary size by removing unused symbols. The classes instantiated from Storyboard are created using reflection, and thus it's impossible to the linker to know if that class is being used, so it's removed from the final binary.

By adding that line to your code you are forcing the linker to add that class at compilation time (not at runtime), making the reflection call from Storyboard to work as expected.




回答2:


I also encountered this problem. The accepted answer did not solve my answer. Here is what solved my answer, and what I think is the actual way that it should be done:

In IB, where you can select your class, there is another drop-down menu right below where you enter the name of your class, called 'Module'. Here you can select either nothing (for classes in Objective-C), or you can select a pre-filled module, usually the name of your app. If you do this, the runtime understands that this class runs in a Swift-module named and is able to load it.

This works for a project that started out as Obj-C only, and had some swift-classes added later.



来源:https://stackoverflow.com/questions/19874634/how-unknown-class-myclass-in-interface-builder-file-error-can-be-fixed-with

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!