Questions tagged [ios10]

iOS 10 is the tenth version of Apple's iOS mobile operating system. It was announced at the company's Apple Worldwide Developers Conference (WWDC) on June 13, 2016. The ios10 tag should be used for questions specific to Apple's iOS 10 operating system. General iOS questions should use the ios tag.

Introduced at WWDC 2016, iOS 10, dubbed "the biggest iOS release ever" brings many new features and an interface redesign.

New features include:

  • Improved Messages, Maps, Apple Music
  • New SiriKit and CallKit frameworks

iOS 10 is the latest version of iOS released to the public and supports the following devices.

iPhone

  • iPhone 5
  • iPhone 5C
  • iPhone 5S
  • iPhone 6
  • iPhone 6 Plus
  • iPhone 6S
  • iPhone 6S Plus
  • iPhone SE
  • iPhone 7
  • iPhone 7 Plus

iPod Touch

  • iPod Touch (6th generation)

iPad

  • iPad (4th generation)
  • iPad Air
  • iPad Air 2
  • iPad Pro 12.9
  • iPad Pro 9.7

iPad Mini

  • iPad Mini 2
  • iPad Mini 3
  • iPad Mini 4

More information can be found here:

2821 questions
21
votes
2 answers

SKStoreReviewController.requestReview() popup is not showing in TestFlight build

I used SKStoreReviewController.requestReview() in my app but Rate app popup is not showing in test Flight build. if #available(iOS 10.3, *) { SKStoreReviewController.requestReview() } In development or Add hoc build Submit button is…
Moiz Irshad
  • 700
  • 1
  • 6
  • 15
21
votes
1 answer

How to check for API availability in Xcode 9

I'm using he UserNotification framework that is available only in iOS 10. I am declaring a method that uses this framework and so far, I have been doing the check for the availability as follows: @interface MyService : NSObject #if…
Jan
  • 7,444
  • 9
  • 50
  • 74
21
votes
2 answers

Change the log level on iOS 10 (Unified Logging) with Console.app

This is so simple but: how on earth do I set the level of log messages I see in Console.app, if I am trying to use iOS10's new "Unified Logging & Activity Tracing" API? In other words, if I have code running on iOS like so: fileprivate let logger =…
algal
  • 27,584
  • 13
  • 78
  • 80
21
votes
6 answers

Alert from os: app may slow down your iPhone

Hy, I have uploaded the app to App Store with both architecture. Please see the attached image for Build Settings of TARGETS in Architectures. And luckily it get Ready for sale, but iPhone 5s giving alert. The alert is: "APP" may slow down your…
Ketan Shinde
  • 1,847
  • 4
  • 18
  • 38
21
votes
4 answers

iOS 10 app crashes when trying to save image to photo library

I'm trying to save an image to the photo library in Swift 3 (I'm working with Xcode 8). ViewController Code: func shareImage(image: UIImage) { let items = [image] var activityVC: UIActivityViewController =…
21
votes
2 answers

How to check if Apple Maps is installed

Anyone aware how to check whether Apple Maps is installed or not? I could not find anything in the docs. With iOS10 users can delete the Apple Maps application. While for Google Maps we can use UIApplication.shared.canOpenURL() to check if it's…
tcurdt
  • 14,518
  • 10
  • 57
  • 72
21
votes
1 answer

iOS 10 : Add sticker extension to an existing Application

I want to make an iOS sticker pack for my application. I've been looking around and I managed to do a sticker app via Xcode. My problem is that I don't want a stand-alone sticker app. Users will never go to the store to download it separately. I…
Melanie Journe
  • 1,249
  • 5
  • 16
  • 36
21
votes
7 answers

iOS 10 developer option missing from settings

The topic says it all. I've just upgraded to iOS 10.0.1 /iPhone 6s/ & now the Developer option is missing from the Settings. I've tried some tricks for older versions such as sync the device in iTunes and add it in Xcode /it's already added/ but…
Dan
  • 619
  • 1
  • 8
  • 18
21
votes
8 answers

iOS 10 iMessage app extension: how do i calculate the height of the extra tall navbar

I downloaded the Xcode 8 beta and was trying to play around with the iMessages app extension sdk but ran into an issue with their seemingly nonstandard nav bar height when i transition into the app's expanded view, my image with the following frame…
stanley
  • 1,113
  • 1
  • 12
  • 26
20
votes
1 answer

When to use UIView animation, CABasicAnimation and UIViewPropertyAnimator?

I wanted to know in which scenarios we should use any of them as the best fit? In the following blog https://www.hackingwithswift.com/ios10, the example written in "Animations revisited" section, can we re-apply the same requirement using…
Raj
  • 1,099
  • 2
  • 13
  • 30
20
votes
2 answers

Calling element.focus() in iframe scrolls parent page to random position in Safari iOS10

Safari on iOS 10.1.1 seems to have a bug when setting focus on an element inside an iframe. When we call element.focus() on an element inside an iframe, Safari will immediately scroll the parent page down and move the focussed element off-screen…
Sly_cardinal
  • 12,270
  • 5
  • 49
  • 50
20
votes
2 answers

NavigationBar delay updating barTintColor iOS10

Context: Let's say we have one NavigationController and 2 viewControllers. ViewControllerA has a blue navigationBar, while ViewControllerB has a green one. I set them up like so : override func viewWillAppear(_ animated: Bool) { …
tsnkff
  • 786
  • 1
  • 7
  • 20
20
votes
1 answer

Swift 3D Touch iOS 10 Home screen quick actions share Item missing

In my apps that use 3D touch home screen quick actions I do not have the new iOS 10 default sharing option that all apps got for free. I have seen some apps, for example Amazon, that have their 4 custom shortcut items (quick actions) and the 1…
crashoverride777
  • 10,581
  • 2
  • 32
  • 56
20
votes
2 answers

How (and when) do I use iCloud's encodeSystemFields method on CKRecord?

encodeSystemFields is supposed to be used when I keep records locally, in a database. Once I export that data, must I do anything special when de-serializing it? What scenarios should I act upon information in that data? As a variation (and if not…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
20
votes
8 answers

Core Data file's Location iOS 10

I am trying to us SQLite Browsers to see my Core Data objects. I am not able to find where does the core data save its sql file. I looked into the app documents folder but there is nothing there. Do you know where does the core data in IOS…
Idan Aviv
  • 1,253
  • 2
  • 13
  • 23