Questions tagged [ios9]

iOS 9 is the ninth version of Apple's iOS mobile operating system. It was announced at the company's Apple Worldwide Developers Conference (WWDC) on June 8, 2015.

Introduced at the WWDC on June 8, 2015. iOS 9 brings many new improvements and enchantments. Many new features are introduced such as:

  • Multitasking for iPad
  • New Spotlight Integration
  • App Thining
  • iOS 9 includes a new News app (replacing the Newsstand app)
  • The Passbook application was renamed Wallet
  • 3D Touch, which is only available on the iPhone 6S and iPhone 6S Plus, is deeply incorporated into iOS 9

Along with those Apple introduced many new and powerful frameworks, that allow you to set rules for your games, model world and even record and replay gameplay. Those new frameworks include:

  • GamplayKit
  • ReplayKit
  • Model I/O

Also some existing frameworks were updated and received some major new functionality, such as:

  • HomeKit
  • HealthKit
  • MapKit
  • CloudKit

Compatibility

It's confirmed supported iOS 9 compatible devices:

  • iPhone 6S Plus
  • iPhone 6S
  • iPhone 6 Plus
  • iPhone 6
  • iPhone 5S
  • iPhone 5C
  • iPhone 5
  • iPhone 4S
  • iPad Air 2
  • iPad Air
  • iPad 4
  • iPad 3
  • iPad 2
  • iPad Mini 4
  • iPad Mini 3
  • iPad Mini 2
  • iPad Mini
  • iPod Touch 5G

More information can be found here:

iOS 9 preview

Whats new in iOS 9

iOS 9 release note

iOS 9 API differences

4161 questions
2
votes
0 answers

Issue with UIToolbar resizing width in multitasking screen

I have a UIToolbar whose width is not changing, when the app is in multitasking mode. self.toolBarKeyboard = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 44)]; self.textfieldUserID.inputAccessoryView =…
Siddharthan Asokan
  • 4,321
  • 11
  • 44
  • 80
2
votes
0 answers

Today widget UI not responding after updating height

I am developing a Today widget with dynamic height. As a result of a tapGesture I am increasing the widget height using the method: - (void)updateWidgetHeightWithSize:(TCWidgetSize)size { self.widgetSize = size; CGFloat height = 100; if…
Anusha Kottiyal
  • 3,855
  • 3
  • 28
  • 45
2
votes
0 answers

Share Extension notification with iOS9 multitasking

I have an app with a Share Extension. Doing some work to fully support iOS9 multitasking and am stuck with a problem: how can the extension tell the main app when something happened? The original design used an NSUserDefaults object with the app…
Dan Loughney
  • 4,647
  • 3
  • 25
  • 40
2
votes
1 answer

Swift, has got me on this one: interfaceOrientation was deprecated in iOS 8.0

It's not a do or die, but have not had any luck with hacking this. Thanks. if session.canAddInput(videoDeviceInput){ session.addInput(videoDeviceInput) self.videoDeviceInput = videoDeviceInput …
Edward Potter
  • 3,760
  • 4
  • 28
  • 39
2
votes
1 answer

Cordova Camera Plugin in IOS 9

I am using Cordova 5.3.3 and the Apache Camera Plugin 1.2.0 on IOS 9. I can succesfully take a picture with the camera however when I try to get a picture from photo library it goes back to camera and I get an error "has no access to assets" in the…
jimny
  • 103
  • 2
  • 10
2
votes
1 answer

Swift documentation comments for overriden methods?

I would like to add markup documentation to a Swift function that is implemented owing to the fact that a class conforms to UICollectionViewDataSource. For instance: /// /// - returns: Why is this documentation ignored? /// override func…
Drux
  • 11,992
  • 13
  • 66
  • 116
2
votes
3 answers

Swift - 'init()' was deprecated in iOS 9.0: Use -initWithConcurrencyType: instead

I have an error (yellow warning) on my model on line: var managedObjectContext = NSManagedObjectContext() 'init()' was deprecated in iOS 9.0: Use -initWithConcurrencyType: instead What is causing this? How can I fix this issue?
senty
  • 12,385
  • 28
  • 130
  • 260
2
votes
2 answers

Is speech to text functionality and voice analysis possible in ios 8 and above

I need to integrate this functionality on the application I am currently working on. Though I came to know about OpenEars but do we have support for iOS 8 and 9. Please do suggest any other latest and reliable apis for voice recording and analysis.
Piyush Mathur
  • 1,617
  • 16
  • 33
2
votes
2 answers

Exclude iPhone 4S devices from downloading app

I will be releasing an app soon, but I specifically want to support iPhone 5 or later. Is there a way of excluding iPhone 4s devices? My app deployment target is iOS9, and iPhone 4S is the oldest device that can have iOS9, but because of screen…
Oscar
  • 95
  • 9
2
votes
2 answers

Add shadow to a UITabbar in iOS8

I wanna add a simple shadow to my UITabbar. I added a shadow image (a 10x1 gradient) to my project / related storyboard property. The image should be repeated by itself, shouldn't it? Nevertheless, there is no shadow in the design mode as well no…
Tobonaut
  • 2,245
  • 2
  • 26
  • 39
2
votes
1 answer

iOS 9: UIPrintInteractionController presentation issue

I'm struggling for few days with this extremely strange issue. Here is the standard code for initializing and presenting print dialog, which was perfectly working before iOS 9: - (void)setupPrinting:(UIPrintInteractionController…
heximal
  • 10,327
  • 5
  • 46
  • 69
2
votes
1 answer

iOS 9 iPad multitasking - side-by-side multitasking without slide over

Is there a way to opt in to iOS 9 side-by-side multitasking without also opting into slide over? The background is that our app UI copes fine in side-by-side, but doesn't really work at all in the narrow slide over mode. The app is mostly a PDF…
JosephH
  • 37,173
  • 19
  • 130
  • 154
2
votes
1 answer

SWIFT2 + Alamofire3 Upload photo, simple method

I am trying to upload photo to server with this method from alamo doc let fileURL = NSBundle.mainBundle().URLForResource("Default", withExtension: "png") Alamofire.upload(.POST, "https://httpbin.org/post", file: fileURL) I edit method to my needs…
Pan Mluvčí
  • 1,242
  • 2
  • 21
  • 42
2
votes
0 answers

canOpenURL: failed for URL: "fbauth2:/" - error: "(null)"

Must say this error is driving me nuts and I am at my wits end. I would like to say that I've read through tons of articles on how to fix this error, I've implemented the solutions given, and this error is still here. Here is some information on…
Kyle Bing
  • 253
  • 2
  • 6
  • 20
2
votes
1 answer

Enforce static title in UITabBar

I am using a UITabBar whose first tab relates to a UINavigationController. The UINavigationController's root view controller's viewWillAppear: sets that view controller's (and hence the navigation controller's) title to the current month symbol.…
Drux
  • 11,992
  • 13
  • 66
  • 116
1 2 3
99
100