How to sideload on iOS
Feeling from android to ios
Waiting Features
- iOS 18 巨魔
- Run virtual machine on iPad
- Coding on iOS/iPadOS
Creating an IDE for iOS is going to be a challenge. There are three key challenges:
- Having your IDE build and install an entirely new app isn’t really feasible. While it might be feasible to build the app, there’s no supported way for one app to install another.
- Running the code you generate in a subprocess isn’t feasible because iOS does not allow an app to create an arbitrary subprocess.
- Running native code within you app isn’t feasible because third-party apps can’t allocate memory that can be executed. — Compile on iOS | Apple Developer Forums