RetroArch for iOS can be run directly on your device without the need for jailbreaking. To do this, you will need a few things:
* Your own iOS Apple developer account
* Your developer account set up on your computer (your certs, etc.)
* A Distribution provisioning profile for RetroArch (a wildcard profile is fine and suggested)
Once you have all of this stuff, getting RetroArch on a non-jailbroken device is pretty simple.
## Config
RetroArch needs to know a couple things when building the app. You can configure these under `ios/script/build.config` inside the RetroArch repo. Once you initially clone down the repo, go into this file and make the changes.
### CODE_SIGN_IDENTITY
This is the identity that will be used when signing the app after it is built. Under normal circumstance, you shouldn't have to change this. But if you have multiple Apple dev accounts on your computer, you will have to be more specific.
```
CODE_SIGN_IDENTITY="iPhone Distribution: Bill Cosby"
```
Adding the name of the account will make sure it uses the exact codesigning identity.
### PROVISIONING
Before you build the app, you'll need to download the provisioning profile you want to use for the app into the `ios` directory. Just drop it in there, and add the file name to the config.
When RetroArch is built into an IPA, it will embed this provisioning profile into the IPA so you can just install the IPA right onto your phone.
## Building
After you've configured the right things, you're ready for building. You'll want to run these from the `ios` directory of the RetroArch project.
You'll need to clone down the [libretro/libretro-super](https://github.com/libretro/libretro-super) repo into the same directory where you cloned this repo.
iTunes File Sharing is enabled on RetroArch. You can simply drag your rom files into the RetroArch app. They will be available the next time you launch the app.
Alternatively, you can use something like [iExplorer](http://www.macroplant.com/iexplorer) to manually copy files over. Doing this will give you the benefit of being able to use diretories, since iTunes File Sharing does not support directories.