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
1
vote
2 answers

scalesPageToFit for webView is not working with iOS 9.3

I have UIWebview in storyboard, I am loading HTML pages inside the view. till iOS 9.2 it is working great as desire, but when i am running same in iOS 9.3 the page is appeared with zoom in by default. I have set scalesPageToFit…
Devang Tandel
  • 2,988
  • 1
  • 21
  • 43
1
vote
2 answers

Autolayout behaving differently on different machines with the same version of XCode

We have four machines in the office with the same version of XCode 7.3 (7D175) and OS X El Capitan 10.11.4 (the newest version at the moment of this post). In one of the machines AutoLayout seems to behave differently from the others. Even creating…
1
vote
1 answer

JavaScriptCore crash

I am using JavaScriptCore with multiple threads on iOS 9.3. One JSContext is shared by all the threads. The app crashes sometimes. Does anybody knows what is going on ? func callFunction(function:String, date:NSDate,…
Jibeex
  • 5,509
  • 3
  • 27
  • 37
1
vote
2 answers

Why is AVPlayer not continuing to next song while in background?

I have been streaming music from remote source using AVPlayer. I get URLs, use one to create an AVPlayerItem, which i then associate with my instance of AVPlayer. I add an observer to the item that I associate with the player to observe when the…
MikeG
  • 3,745
  • 1
  • 29
  • 51
0
votes
1 answer

FilePicker in iOS 9.3 Exception

Trying to implement file picker on a device that runs on iOS 9.3 The capabilities are ticked inside Entitlements.plist and the code works on simulated device running iOS 12.2. Also tried to simulate other devices running iOS 9.3 and the result is…
Andrei
  • 115
  • 11
0
votes
1 answer

How to initialise a NSManagedObject subclass for iOS 10 and iOS 9.3 in Swift

I am writing an app in Swift 4 which should run for iOS 10.4 as well as for iOS 9.3. However, I have no idea how to implement the initialisers for both iOS versions. I get the error message: CoreData: error: Failed to call designated initializer on…
Heinz M.
  • 668
  • 3
  • 8
0
votes
0 answers

Angularjs dosent work on ios phonegap app

Hello i build a phonegap app for android and ios and its works ok on android phones an iphones with ios v.10+ works grate. But on older version and specific on ipad 2 with ios v9.3.5 angularjs doesn't work. I tried to load angular.min.js from google…
0
votes
0 answers

xcode 9: presentViewController removing all previous controller

I have view controller and implement like this : loginViewController = [[LoginViewController alloc] init]; loginViewController.delegate = self; [self.view addSubview:loginViewController.view]; [self…
victorz
  • 39
  • 1
  • 12
0
votes
1 answer

iOS 9 : Safe Area Layout Programmatically and Remove Side Space in View

How to add safe area layout to my app for iPhone 5S and iOS 9.3.5. my code is like this if (@available(iOS 11, *)) { loginView = [[LoginView alloc] initWithFrame:self.view.safeAreaLayoutGuide.layoutFrame]; [self.view…
victorz
  • 39
  • 1
  • 12
0
votes
1 answer

The tableView(_ tableView: UITableView, editingStyleForRowAt in a class results in inconsistent behaviour in IOS 9.3 & IOS 10+

Using the following code in a class that has more than one edit action - slide to left and move row results in IOS 9.3 devices not allowing the slide to left but allows the move. Both actions work fine in IOS 10+. Removing this code allows 9.3 & 10+…
Jeremy Andrews
  • 807
  • 12
  • 17
0
votes
0 answers

iOS 9.3.2 HTTPS Server returning -1202 "The Certificate for this server is invalid"?

I am requesting from iOS 9 device to https:// URL where iOS receiving error code -1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “example.com” which could put your confidential…
Kapil_A
  • 125
  • 2
  • 15
0
votes
2 answers

Why Xcode 9.2 is not recognising trusted IOS 9.3.5 devices?

I updated to Xcode 9.2 recently, and it is not recognising trusted IOS 9.3.5 device, a really old ipad. Can anyone suggest a workaround? Thanks in Advance. Update: Also tried connecting to a 11.2.1 Ipad mini. Its also being shown as untrusted…
Thushar G R
  • 1,017
  • 9
  • 24
0
votes
1 answer

valueForKeyPath: @"@max.self" returning nil for iOS 9.3.5?

I am trying to find out maximum value from an array using @"@max.self" but it is returning nil when I try to run it on iOS 9.3.5 device, for the Higher version it works properly and returns the proper value. NSNumber *maxOfBarGraphValues =…
Karan Bhatia
  • 807
  • 1
  • 8
  • 16
0
votes
1 answer

Contacts and Microphone request access does not work on iOS 9

I've been stuck on a bug since last Monday, so I'm asking for help now .. Contacts and Micriohpone request access does not work on iOS 9. I use this piece of code in order to request access to contacts : let contactsStore = CNContactStore() func…
Nicolas Charvoz
  • 1,509
  • 15
  • 41
0
votes
1 answer

Error archiving CMTime with NSKeyedArchiver in swift4.0 in ios9.3

The following code archivedTimes() builds successfully in swift4. And it runs fine on a device with ios10.3 installed. typealias Time = CMTime typealias Times = [Time] static let times: Times = Array.init(1...9).map({ CMTime.init(value: $0,…
SirEnder
  • 564
  • 4
  • 14