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.