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
2
votes
2 answers

Why does this code work on iOS 32 bit but not on 64 bit?

The code below receives MIDI data from a musical instrument connected to the iOS device. It works fine on a 32 bit iOS device. On 64 bit, the callback function is also called for every event, but the data received in 'pktlist' is invalid. What is…
Hans
  • 2,220
  • 13
  • 33
2
votes
1 answer

BluetoothManger no link with Xcode 7.3

I embedded the private framework BluetoothManager.framework with headers in path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks, with the includes #import…
biker084
  • 21
  • 3
2
votes
2 answers

How to speed up HKStatisticsCollectionQuery in iOS 9.3?

It seems HKStatisticsCollectionQuery is incredibly slow in iOS 9.3. It can take upwards of 40 seconds to return hourly statistics for a year for active calories where it took 1 or less before. let predicate =…
jestro
  • 2,524
  • 4
  • 27
  • 46
2
votes
0 answers

MKMapView not calling to update insets on iOS 9.3

I have a MKMapView inside of a navigation controller in my app. Under iOS 9.2, I was correctly seeing the little map compass view appear below my navigation bar when I would rotate the map view. Under iOS 9.3, the compass appears to be under the…
lotz
  • 1,184
  • 1
  • 10
  • 11
2
votes
0 answers

UISearchBar translucency at iOS SKD 9.3

After updating Xcode to 7.3 (iOS SDK 9.3) my UISearchBar ignores setting transluent property. This code worked well before update. override func viewDidLoad() { super.viewDidLoad() print("viewDidLoad: \(searchBar.translucent)") …
Artem Deviatov
  • 970
  • 12
  • 20
2
votes
0 answers

Grails SpringSecurity Rest 100% CPU GC overhead limit exceeded

I'm using Grails 3.1.4 with spring-security-rest plugin. Usually everthing works fine, but when one of our test users tries to fetch any data from a controller the server's cpu usage climbs up to 100% followed by a java.lang.outofmemory error. I…
feuernurmitm
  • 312
  • 2
  • 11
2
votes
0 answers

UIKit importing in Struct definition

While adding UIKit module in Struct definition through Xcode7.3. I get red line on UIKit (it feels as deprecated) as show in Image below , What does it mean?
Mohamed DiaaEldin
  • 1,061
  • 1
  • 10
  • 23
2
votes
1 answer

Is it impossible to change the player item(s) in an AVPlayer or in an AVQueuePlayer while app is in Background

I was using an AVPlayer to stream remote audio files. When an item ended, i would load up a new item into the AVPlayer and then start playing again. This worked well in both foreground and in the background in iOS 9.2 . With the release of iOS 9.3…
MikeG
  • 3,745
  • 1
  • 29
  • 51
2
votes
1 answer

How to support multiple watches for iOS 9.3 and watchOS 2.2

Having trouble figuring out how to update my watch and iOS apps for watchOS 2.2 in order to support multiple watches. I know there are new functions that must be implemented primarily on the iOS app side, but also on the watch extension according to…
mackymoo
  • 95
  • 1
  • 4
2
votes
1 answer

iOS 9.3 Today View Height limited

I have an application that provides a Today extension that uses a Table View Controller as it's VC. Before iOS 9.3, I would simply call self.preferredContentSize = CGSize(width: theContentWidth, height: theContentHeight) to change the height of the…
Wes
  • 1,032
  • 7
  • 11
2
votes
1 answer

iOS 9.3 Email with attachments never sends

Using the MFMailComposeViewController with attachments causes the email to stay in the Outbox and never get sent from my Air 2. Same app on my Pro with 9.2 sends fine. //.h @interface embEmailData : NSObject { NSArray *to; NSArray …
malaki1974
  • 1,605
  • 3
  • 16
  • 32
2
votes
0 answers

advertisingIdentifier changes every time on iOS 9.3 simulator

Does anyone notice that method -[ASIdentifierManager advertisingIdentifier] changes every time when app launchs ? while on iOS simulator <= 9.3 and iOS Real Device 9.3 , it keep un-changed when app launch.(that's the expected behavior) What…
sunus
  • 838
  • 9
  • 11
2
votes
0 answers

ios 9.3 UIImagePickerController memory issue

Screenshot UIImagePickerController was working very well on iOS 9.2, with a memory usage of 19m in my iPhone. Since iOS 9.3, I noticed that the memory usage is increasing to 300m and the application crashes. my code: import UIKit import…
Nd Zg
  • 21
  • 2
2
votes
1 answer

Use Swift 2.2 with iOS 9.2 and watchOS 2.1?

Now that Swift 2.2 / iOS 9.3 / watchOS 2.2 is out, can I update an app using Xcode 7.3 and still work on a iOS 9.2 device? For example, if I started using #selector(someFunc) instead of selector("someFunc"), will this crash on a iOS 9.2 device?
TruMan1
  • 33,665
  • 59
  • 184
  • 335
1
vote
0 answers

WKWebview snapshot configuration not supported in iOS 9

I m getting crash when I try to take snapshot of wkwebview in iOS 9.0,can anyone please help me to resolve this issue? _webView takeSnapshotWithConfiguration:wkSnapshotConfig completionHandler:^(UIImage * _Nullable snapshotImage, NSError * _Nullable…
Sushmitha
  • 11
  • 2