3

I have been trying to create a custom object and have it appear in the object palette so I can drag and drop it into the .xib file when I am building an iOS app. I cannot find any tutorials or instructions online on how to do this; did Apple remove this functionality? Any help would be greatly appreciated.

jscs
  • 63,694
  • 13
  • 151
  • 195
  • This is what was called `IBPlugins` (Interface Builder Plugin). Unfortunately Apple killed it with iOS and since Xcode 4 in general. Shame. – Regexident Jun 09 '11 at 18:18

1 Answers1

4

You can't add custom plugins when using the iOS platform. This is possible for normal MacOS development but sadly not for iOS. If however you have a UIView descendent for example, drag a normal UIView onto the screen and change the class to your custom class to use it HOWEVER you will get no design-time view of the custom control.... :(

Simon Lee
  • 22,304
  • 4
  • 41
  • 45