I am developing an iPhone application. I need to put some of the code in a dylib and link it to my application project.
How do I create dylib using xcode and how do I link it to my application?
Ok...so basically I cannot make any third party dylib files and include in my iphone app...but I can use already existing dylibs in my appln..right?
Is it tht the app store doesn't approve the third party dylibs?
Ok...so basically I cannot make any third party dylib files and include in my iphone app...but I can use already existing dylibs in my appln..right?
Is it tht the app store doesn't approve the third party dylibs?
You can use anything in the public frameworks. You cannot use any private frameworks. I'm not 100% sure what the status is with non-framework library code in dylibs already on the system.
The relevant section of the SDK agreement is 3.3.2. I suggest you read and ensure you understand it. I can't post it here due to the NDA (and the fact that my stupid work PC won't let me copy the text out of the PDF). I would suggest that it indicates any app that tries to use install frameworks or library code will be rejected.
You can use anything in the public frameworks. You cannot use any private frameworks. I'm not 100% sure what the status is with non-framework library code in dylibs already on the system.
The relevant section of the SDK agreement is 3.3.2. I suggest you read and ensure you understand it. I can't post it here due to the NDA (and the fact that my stupid work PC won't let me copy the text out of the PDF). I would suggest that it indicates any app that tries to use install frameworks or library code will be rejected.