0

How do I create a plugin bundle for iOS in XCode? When I try to create a new project, in "choose your template for new project" under iOS I can see only the types "Application" and "Library". There is only one template under "Library", the "Cocoa Touch Static Library".

341008
  • 9,862
  • 11
  • 52
  • 84

1 Answers1

0

Dynamic linking is not allowed by Apple for iOS projects (only against iOS-provided libraries), which is why you can't find a corresponding project. If you try to use dynamic linking, your app gets rejected.

DarkDust
  • 90,870
  • 19
  • 190
  • 224