I\'m trying to open a mobile configuration file (mobileconfig) in safari to install it but nothing work. I use URL Scheme:
NSURL *finalURL = [NSURL URLWithS
I think you can use data URI to encode and launch mobileconfig. (I don't have IOS device here, so I cannot test right now_
You can use http://dopiaza.org/tools/datauri/index.php to encode your profile (don't forget to add mime type: application/x-apple-aspen-config)
Then you can open:
[[UIApplication sharedApplication] openURL:dataURLGenerated];