Is dynamic library supported on ios (iphone/ipad)? In xcode, i tried to create a new project->framework & library->cocoa library (dynamic). In the project settings, i set the base sdk to iOS device 4.1 and target to iOS4.1 but it have a build error "target specifies product type 'com.apple.product-type.library.dynamic', but there's no such product type for the 'iphonesimulator' platform". The build i selected is simulator->debug->i386.

Thanks.

link|improve this question

33% accept rate
feedback

2 Answers

up vote 12 down vote accepted

Dynamic libraries are not supported by iOS and will result in your app getting rejected. Only static libraries are allowed.

link|improve this answer
Anybody know why that is? To me it just seems completely insane. – Erik de Castro Lopo Apr 29 '11 at 3:24
9  
@Erik de Castro Lopo: The reason is security: since a dynamic library can be loaded and unloaded at runtime you could download additional executable code and load it (think plug-in). This could get compromised by a hacker and then having malicious code executing on your phone is a very bad thing. It would also make it possible to add unapproved features to an approved app. In short: in this environment, Apple considers dynamic linking to be a Pandoras box that must be strictly controlled, otherwise it could compromise security and I agree that it does make sense on the phone. – DarkDust Apr 29 '11 at 6:25
excellent answer. Thanks for explaining that so succintly – levous May 5 '11 at 14:21
1  
I am developing an in-house app which will not be distributed via AppStore, so I don't care about Apple's restrictions for AppStore. Is it technically possible to create a dynamic library for iOS app? – Aliaksei Sep 9 '11 at 21:12
1  
@Aliaksei: Technically yes, or else you wouldn't be able to link to Apple's libraries. AFAIK dynamic library support is about the same like on Mac OS X. However, Xcode doesn't support it, but it seem you can use bundles. See this article. – DarkDust Sep 10 '11 at 17:35
show 3 more comments
feedback

I'm not really disagreeing with DarkDust's answer, but if I may channel my inner Bill Clinton, it depends on what the meaning of supported is :)

Apple doesn't want you doing this for App Store apps, but the operating system certainly allows it. Jailbreak apps use this technique all the time. You basically use a standard UNIX technique to dynamically open a library/framework, and then use stuff in it. The dlopen function allows you to open the library by passing in the path to that library. From some docs for building jailbreak apps, here's an example of calling an init() function implemented inside your own, separate dylib:

init()
{
    char* dylibPath = “/Applications/myapp.app/mydylib2.dylib”;

    void* libHandle = dlopen(dylibPath, RTLD_NOW);
    if(libHandle != NULL)
    {
        // This assumes your dylib’s init function is called init, if not change the name in “”
        void (*init)() = dlsym(libHandle, “init”);
        if(init != NULL)
        {
            init();
        }
        dlclose(libHandle);
    }
}

Furthermore, the default restriction against allowing you to build a dynamic library project for iOS is something in XCode that you have the ability to override by editing some XCode xml files:

Build and use dylib on iOS

Once you do this, you can build a normal iOS .dylib library, and use it per the sample code above. (yes, you probably will have to unlock this capability again whenever you install a new XCode version).

So, it's not a technical limitation, but an App Store policy limitation. If you're not limited to the App Store, then you can do it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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