I need make an Object Library, an Interface Builder plugin like Mapkit so that user can drag my Custom Object and add to UIView.

I need make a library, .A?, something else?

enter image description here

As property, i want to show and configure it with my basic properties.

Any idea how to do this?

thanks.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

In Xcode 4.0, Apple has removed support for using custom Interface Builder palettes provided by IBPlugins in the Interface Builder editor. Xibs/Nibs that use such plugins will still compile but they cannot be edited. You'll need to install Xcode 3 (in a separate folder so as not to overwrite 4) and use it to edit xibs with custom palettes.

This is all in Xcode 4's release notes. Stay tuned to prerelease release notes for more updates on this matter.

link|improve this answer
feedback

You need to create an Interface Builder plugin for that; the static library has nothing Interface Builder knows how to work with.

link|improve this answer
ok, and how to make an interface builder plugin? – elpsk Jul 6 '11 at 7:32
Take a look at Apple's website for info. Note that IB plugin support was dropped for Xcode 4--you cannot do what you want to do unless you're using Xcode 3 or earlier. – Jonathan Grynspan Jul 6 '11 at 12:07
Not possible with Xcode 4. – Joshua Nozzi Jul 7 '11 at 12:32
Yes, I said that. :) – Jonathan Grynspan Jul 7 '11 at 13:04
Whoops. Didn't catch that in your comment. Apologies. – Joshua Nozzi Jul 7 '11 at 14:57
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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