Questions tagged [ios9.3]

This tag should be used in questions that specifically relate to iOS 9.3. If the version does not matter use the iOS tag.

What Questions should have this tag?

This tag should be used in questions that specifically relate to iOS 9.3. If the version does not matter use the or tags.

Summary:

iOS 9.3 was released in March 21, 2016, builds versions are 13E233-13E234

iOS is a mobile operating system created and developed by Apple Inc. and distributed exclusively for Apple hardware. It is the operating system that presently powers many of the company's mobile devices, including the iPhone, iPad, and iPod touch. Programming for it is done in Swift and Objective-C. Wikipedia.

Related Tags

180 questions
6
votes
1 answer

Error when using -[MPMediaPlaylist addItemWithProductID:completionHandler:]

I'm trying to use the new Apple Music APIs from 9.3 to add a song to a playlist created by my app, without adding it to the user's library. Consider the productID 316654632, it's the song Lisztomania by Phoenix, in the US iTunes Store. Using the…
Jota
  • 149
  • 3
  • 9
6
votes
3 answers

In Swift, How to add Badges on UIImageView in TableViewCell in TableView?

I am developing a social networking site where I have a TableView with multiple cells(rows), in each cell I have a "comment" and "like" Imageview, so whenever update comes from the server I have to increment the number of "comment" and "like"…
6
votes
2 answers

iOS 9.3 freeze after calling openURL

My app freezes after calling openURL on iOS 9.3 builds 13E233 & 13E234. I tried using dispatch_after but that does not fix the issue. Here's the code, nothing special. + (void)someMethod:(UIView *)senderView { [Utility…
Nix Wang
  • 814
  • 10
  • 18
5
votes
4 answers

Unable to Download 'AppName' could not be downloaded at this time

I have an enterprise app that I'm distributing via OTA. When I try to install it I get this error from Xcode Device Log : LoadExternalDownloadManifestOperation: Canceling failed manifest download for replace: [MyBundleID] [MIClientConnection…
Andrew
  • 885
  • 1
  • 10
  • 15
4
votes
1 answer

How to check IPv6 address of an IPhone

I have setup a IPv6 nat64 environment based on apple recommendations…
abhishek saatal
  • 295
  • 1
  • 3
  • 14
4
votes
3 answers

Cancelling search with UISearchController causes crash

In our app we have a UITableViewController that has a UISearchController: searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; self.searchController.searchResultsUpdater = self; [self.searchController.searchBar…
Don Miguel
  • 882
  • 9
  • 19
4
votes
1 answer

Presenting: Error Domain=IDEFoundationErrorDomain Code=1 "failed to compile bitcode for myApp:

I have Meet a Problem When I Update Xcode From 7.2.0 to 7.3.0 ,I use Archive to Generate ipa For my App ,In the last step ,I select Rebuild from bitcode ,Then show Preparing Archive interface ,but I get a error "failed to compile bitcode for…
andrew
  • 41
  • 3
3
votes
1 answer

iOS 9.3.5 no internet access through my app after adding a url scheme

After making an update to an app that only added a url scheme, all 9.3.5 devices fail to connect. The app opens but no intent access. If they upgrade to iOS 10 then it works fine. However, that is not an option for my iPhone 4 customers. Is there…
dc101
  • 31
  • 6
3
votes
1 answer

Website not loading only in ipad ios9.3.5 even after ractive parsing

Initially, when I trying to load a searchresult.jsp in my ios9.3.x device it threw me a below error due to ractive: webpage not loading only in ios9 safari browser I have fixed that issue by partition and preparsing in all the ios9 version except…
Dinesh Kumar
  • 1,469
  • 4
  • 27
  • 46
3
votes
2 answers

Swift3 CoreData crash on iOS9 device

I have CoreData app that is perfectly working on iOS10, written in Swift3, supporting iOS 8.4 and above. When I try to run it on iOS 9.3.5 I'm getting error: 2016-10-07 17:47:20.596 FormApp[710:179733] *** Terminating app due to uncaught exception…
Prettygeek
  • 2,461
  • 3
  • 22
  • 44
3
votes
2 answers

App Transport Security blocking with "Allow Arbitrary Loads = YES"

I'm trying to access my Python CGI script running on an instance in Amazon EC2 though a POST request but even though I have changed my Info.plist file to allow arbitrary loads it shows: Here's where I make the POST request: let manager =…
David
  • 101
  • 2
  • 4
3
votes
0 answers

XCode Bridging-Header build failed only when archive but success when installing on real phone

I have this situation where I was building an iOS app in Xcode and needed to use SHA256 encryption. I created a bridging header, imported the header I needed in it and set the Bridging Header in the build settings. I was testing it with the emulator…
xeph
  • 60
  • 8
3
votes
1 answer

Cordova iOS device build failed. No matching provision profile found

I win a beautiful error code in the terminal when I attempt "cordova run ios --device --verbose". Though app loads just fine in the emulator. Xcode says build is successful. However, app does not open on the device, all though xcode icon does appear…
John Doe
  • 91
  • 1
  • 5
3
votes
0 answers

canOpenURL: failed for URL: "tel://123456789" - error "(nulll)"

I am new to iOS development and I ran into a problem where I tried multiple solutions but couldn't fix it. So what I want to do is, when I click on a button, make a phone call. I already added this to my…
Jonh Doe
  • 31
  • 3
3
votes
0 answers

iOS 9.3 Interactive pop gesture corrupts navigation bar

I have an iOS app with interactive pop gesture enabled by default, however when I play with it sometimes it comes to corrupt navigation bar but popping by tap on back buttons works good, any ideas?
1
2
3
11 12