I had created an iOS framework with Debug mode and added that one into another project which i was exported in Distribution mode. wi开发者_如何学编程ll it create any problem while submitting the app to app store?
Can I submit an application (Distribution mode) to appstore, which have an iOS custom framework in Debug mode?
Yes you can, but you probably shouldn't.
Debug builds have lots of extra stuff in them to allow the debugger to do it's thing. This extra stuff makes the binary bigger and slower.
精彩评论