Hi, I'm using Xcode6 and created a test app for ipad. It compiles and runs fine in simulator. My next step is to distribute it using adhoc distribution mechanism. Here is what I've done1. Using Keychain Access to create a public/private key pair.2. Load it up into Developer Center to create a certificate, then download it.3. Add my ipad UUID under Devices.4. Create a adhoc provisioning profile by including my ipad in it, I only have one device in Member Center. Let's call the provision MyProv.5. Run the .cer file by double clicking it.6. Download the .mobileprovision file from Member Center to desktop. Then double click it.Now, in Xcode, under Build Setting, I change Provisioning Profile Debug and Release entry to point to MyProv, then run Product->Archive. When archiving the app, Xcode as me if I want to use my key created in step 1 above to sign the bundle. I allow it. I also choose to Save for ad hoc distribution when asked. In the summary page, I can see the Provisioning Profile column shows 'MyProv, t
Search results for
Visual Studio Maui IOS
105,656 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I've tried reinstalling XCode, rebooting, running it with an earlier system on my cloned drive and everything else I could think of. All the problems seem to be associated with ios and not osX.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
an error occurs when you use the zoom of the video camera application; iOS springboard make, someone else will happen?
Oddly, it seems ok now. I haven't changed a thing. Just waited about 3 hours.Regarding mail - didn't the swipe actions work for you? e.g. swipe left (without clicking) and you can delete, just like on iOS.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
In the Swift 2 Prerelease for the Swift book, it states:“There are some cases in which you know a throwing function or method won’t, in fact, throw an error at run time. In these cases, you can call the throwing function or method in a forced-try expression, written, try!, instead of a regular try expression.Calling a throwing function or method with try! disables error propagation and wraps the call in a run-time assertion that no error will be thrown. If an error actually is thrown, you’ll get a runtime error.”https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/ErrorHandling.html#//apple_ref/doc/uid/TP40014097-CH42-ID508(there is no way to deep-link to the relevant section but it's the second from last, Disabling Error Propagation.)If you have a chance to watch the video posted on the developer site from the What's new in Swift session, it's well worth it. I think that's where I saw this.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
Can confirm this is in the public beta for iOS 8.4 (12H4125a) too. Both my iPhone 5S and iPad Mini 2 will no longer connect to my university's WiFi as it uses WPA2 Enterprise.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I don't remember if this was announced this week; does Swift 2.0 work back to iOS 7?
Ladies, and Gentlemen As I am no genius on this, I guess it was just by luck that i was able to figure this out. I also was one of you that jumped the gun and installed all the Beta OS. On my Applewatch, iPad, iPhone, OS X. But as Beta goes, they are all but too buggy for everyday use. So to the good stuff. I have highlighted the info below that will help solve this head ache!!Pre-work: Make sure your iPhone that the watch is synced to and has the old back up is still running iOS 9. It will need to find the backup 1.0 Applewatch fileStep 1. Factory Restore ApplewatchStep 2. Sync Watch manually do not use the QR scanner as it only reads the 2.0 profileStep 3. Restore from backup any previous 1.0 back up. 1.0.1 backups will not work as it was an OTA updateStep 4. Let watch do it's magicAnd........wait for it, wait for it..... Repaired!! Back to WatchOS 1.0Follow OTA update back to 1.0.1 and recover your backup file.I suggest everyone remove iOS9 as well after the watch is fully restored.Thank you.Updat
I need to restore my apple watch back to WatchOS 1.0.1. How can I do this? I can't pair it with my phone because I restored my phone back to iOS 8.3.
I too have been experiencing the same very fast battery drain that you are all talking about. I have an iPhone 6 16GB. I just recently re-install iOS 9 right over my previous iOS 9. Since doing this my battery life experience has greatly improved. I can't exactly say that things are back to normal but very much better than before I re-updated. I did try re-installing iOS 8.3, restoring from backup and then upgrading to iOS 9. 1st and 2nd time same results, battery life out of control. Now that I just updated right on top of iOS 9 and things have greatly improved. If things change I will re-post. Good Luck!!!
Topic:
App & System Services
SubTopic:
Core OS
Tags:
What is the maximum number of notifications that can be added to an iOS push notification? Actions that will be available by swiping left on the notification in the lock screen, for example.
Reposting this with more info:When the beta came out yesterday, I did an upgrade and not a restore. Today I litterally watched the battery percentage drop 1 percent every two minutes while I only had the home screen active (background apps disabled, location services disabled, etc). I kept checking the Settings -> Battery page and it show Home Screen at 15% of the usage, which was completely wrong.Today I did a complete restore and now things are better. The Settings -> Battery screen not only showed Photo App as the top user (I have over 8 gigs of phots and videos), but it also showed it as Background Activity. I didn't see that before I did the complete restore. Now, Mail, Messages and Calendar also show that. I'm sure the battery will still drain faster than with a production version, but at least it seems like the reporting is working correctly and it allowed me to understand what was sucking the life out of my battery.---------------------------------------------------------As an update, I have an
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I'm using AFNetworking as my basic networking library. When I do a memory dump on a jailbroken phone (iPhone 4, iOS 7.1), I can easily see request urls and/or responses (such as json objects) in the dump files in plain text. I checked with the memory leak tool in Xcode and there is no memory leak based on that.My app has sensitive data in the urls or responses (Like user's name, email address, etc), which are listed in the OWASP mobile risks (M4: Unintended Data Leakage). We are required to be in compliance with these standards so I want to clean this information right after the connection finished. What I have done so far:1) Set the cache policy in the AFNetworking to NSURLRequestReloadIgnoringLocalCacheData2) Disabling the NSURLCache in the app:NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil]; [NSURLCache setSharedURLCache:sharedCache];3) I also tried:[[NSURLCache sharedURLCache] removeAllCachedResponses];or[[NSURLCache sharedURLCache] removeCached
Hello!I am working on an app that plays audio and accepts voice commands simultaniously. When I play audio through bluetooth in my car, the Audio Session for the app uses the Bluetooth HFP ports. This causes the output audio quality to become very poor. If I switch to AVAudioSessionPlayback, the output is on the A2DP port, which sounds great. Ideally I would like to be able to play ouput through A2DP, and accept input through HFP, but I assume this is a limitation of bluetooth, or everything would already work this way to improve sound quality. For my app it would be acceptable to accept input from the phone's microphone, and play the audio through bluetooth, but this also seems impossible as described here: http://stackoverflow.com/questions/22146406/ios-input-mic-output-bluetooth-device. Any advice on improving playback audio quality when connected to bluetooth while using AVAudioSessionPlayback and record would be greatly appreciated. Has anyone encounted this issue before and had a suitable fix?T
When trying to access my iPhone running iOS 9 within iTunes on El Capitan, i get the rainbow wheel.Accessing iPad with iOS 9 works, but unable to access iPhone at all.Anyone else experiencing this issue?