vote up 4 vote down star
1

I have refactored some UIView sub-classes into a static library. However, when using Interface Builder to create view components for a project that uses the static library I find that it is unaware of the library classes. What do I need to do to make the class interfaces visible to Interface Builder?

Update: The correct answer refers to dragging the headers into the 'XIB browser'. The '.h' files can be dragged from a finder window to the window area identified in this image:

alt text

flag

good question, good solution - thanks Teabot and Reed Olsen! – Till Nov 16 at 16:39

5 Answers

vote up 7 vote down check

Try dragging the static library into your xib browser in Interface Builder. I haven't tried this with a static library, but the concept is the same. When you drag header files into IB, you can access those classes.

link|flag
Dragging the header files directly into the XIBs browser/explorer worked - dragging the static library did not. – teabot Jun 30 at 10:20
vote up 0 vote down

Can someone please clarify what the "XIB browser/explorer" is? Also, where were the header files dragged in from, exactly? (The static lib project itself, or somewhere else?)

link|flag
See original question - it's been updated. – teabot Aug 4 at 16:16
Thanks! After dragging in my header file from my static lib project, and doing a clean build, at runtime I still get "Unknown class MyComponent in Interface Builder file" when the view is shown. No idea what I'm missing. – LexH Aug 4 at 16:29
I assume that the static lib project has been included in your project that contains the XIB file? – teabot Aug 5 at 8:57
Yup! My actual objective C code can instantiate objects that come from my static lib code at runtime jkust fine. It's just that the interface builder stuff can't see the classes at runtime. If I try moving the UIView subclass in question out of the static lib and into the project which uses the static lib, everything works. Btw, I've set up my projects - my static lib and the project that uses it - by following this tutorial: clintharris.net/2009/iphone-app-shared-libraries/… Maybe there's some crucial thing this tutorial misses out? I'll have a look. Thanks! – LexH Aug 5 at 9:23
Ok, here's something interesting. If I add a call in my main project to a class method in MyComponent in the static lib, a class method that does nothing, it all works. So from what I can see, when I compile my main project, the compiler is dropping MyComponent from the static lib at link time, because it can't see MyComponent being used in any code in my main project. I'm guessing the interface builder nob instantiation stuff uses reflection to instantiate the MyComponent class. There must be a better way to fix this than the above hack though! – LexH Aug 5 at 10:56
vote up 0 vote down

I have the same problem as you, teabot. I created a static library which includes UIViews. But when I create a UIView with Interface Builder and I want to associate it with one of my views defined in my static library, I couldn't: my Inspector doesn't know my own classes.

Currently, I can only use my static library with XCode.

Is it possible to use static library with IB? If yes, how?

Thanks for your help.

link|flag
I have a solution for your problem teabot. In IB, select File > "Read Class Files..." and then select the headers of the classes of your static library you want have access from IB. I just tried, and it's working for me now. – Max Brice Aug 18 at 14:23
vote up 0 vote down

LexH, try linking with the -ObjC flag when building your static library. That worked for me... for about a year :-) I found this post as the problem has returned with a fresh OSX install and an upgrade in xcode. But it worked in XCode 3.1.2.

  • David
link|flag
vote up 0 vote down

Add the same problem as LexH. It worked only when I called a dummy class method. The problem was that I did not add my static library to the "link binary with libraries" under target. Strangely everything else worked.

I followed this guide to link with my static lib Create static lib

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.