The iOS App Store now supports on-the-fly code download. How to implement this?

I want to implement this functionality as described in the App Store Terms:

enter image description here

What are the interfaces, delegates, protocols, etc. must be implemented to meet the above requirement? (Yes, I am creating a development and learning app)

+3


source to share


1 answer


Based on my interactions with Apple's review process, this guide will not provide code compliance mechanisms. You must make sure that the intended function of your application is well known to Apple. You probably shouldn't load code without user interaction. This guide prevents the user from changing the function of an app after it has been viewed, which bypasses the App Store review and could potentially have malicious intent (but usually does not).

In addition to Section 2.5.2 of the App Store Browsing Guide, this section is covered in Section 3.3.2 Apple Developer Program EULA .



An application that is a programming environment designed to be used in learning to program can take so long to load and run executable code because the following requirements are met: (i) no more than 80 percent of the application viewport or screen can be moved using executable code, unless otherwise permitted in the Documentation, (ii) the Application must provide a sufficiently noticeable metric for the user within the application to indicate that the user is in (iii) the application should not create a repository or repository for other code or applications, and (iv) the source code provided by the Application, must be fully visible and editable by the user (for example, no precompiled libraries or frameworks can be included in the uploaded code).

+1


source







All Articles