Creating a plugin bundle for iOS using XCode

1.1k views Asked by At

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".

1

There are 1 answers

2
DarkDust On BEST ANSWER

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.