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
20
votes
1 answer

Swift 3 UITableView datasource method viewForHeaderInSection gives warning

After migration to Swift 3 I have the following method: func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {} And it gives me the warning Instance method 'tableView(tableView:viewForHeaderInSection:)' nearly …
Nik Yekimov
  • 2,657
  • 2
  • 24
  • 34
20
votes
4 answers

UIImagePickerController crashes on iOS10

On presenting UIImagePickerController with photo library source on iOS10, my app crashes. On iOS10 with camera source and on iOS9 with photo library and camera sources, the app does not crash. The app is written in Swift 2.2 and built by Xcode…
r.izumita
  • 450
  • 1
  • 4
  • 13
20
votes
2 answers

NSHealthShareUsageDescription must be set in the app's Info.plist in order to request read authorization

I have a framework that uses _healthStore requestAuthorizationToShareTypes:writeTypes readTypes:readTypes completion:^(BOOL success, NSError *error) { When I include the framework into my iOS app and put the following in my app info.plist…
BillBu
  • 211
  • 1
  • 3
  • 7
20
votes
10 answers

Get the push notification token - iOS 10, Swift 3

How to get the device token from new xCode 8, Swift 3 in iOS 10? Here is the code to register notification: func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { …
user831098
  • 1,803
  • 6
  • 27
  • 47
20
votes
8 answers

iOS 10.0 UIRefreshControl not showing indicator

I am using a UITableView Which has a Pull down to refresh function but the spinner for pull down to refresh is not showing up when I call the [self.refreshControl beginRefreshing] The above code is called inside the viewDidLoad cause the table is…
dogwasstar
  • 852
  • 3
  • 16
  • 31
20
votes
3 answers

requestAccessForMediaType crashing in iOS 10

In my app I'm using card.io to scan credit cards. It works fine in iOS 9. In iOS 10, the app is crashing and I cannot find the crash log in the xcode 8 beta 2 console as it throws a lot of garbage messages. And then I checked in privacy->settings to…
Teja Nandamuri
  • 11,045
  • 6
  • 57
  • 109
19
votes
6 answers

How to Localize Push Notification Permission Dialog alert?

I am trying from the last 3 hours but not able to find any method to localize it. I am using iOS 10.0 means UNUserNotificationCenter. I want to localize it in Spanish-Mexico(es-MX) Language.
Sourabh Sharma
  • 8,222
  • 5
  • 68
  • 78
19
votes
7 answers

Open Wifi Settings by "prefs:root=WIFI" failed in iOS 10

I was using prefs:root=WIFI url scheme in my app with prefs entered in info.plist to open directly the iOS settings application in Wi-Fi settings and it was working great on iOS 9 but it does not work anymore on iOS 10. Does anyone know if this is…
tbago
  • 660
  • 1
  • 6
  • 19
19
votes
2 answers

What is DYMTLInitPlatform platform initialization successful log when the application starts?

I've just updated to Xcode 8/iOS 10 SDK and now when I compile and run my app, I'm getting [DYMTLInitPlatform] platform initialization successful before all the other logs in the output. It's not harmful or anything, but I was wondering what that…
Can Poyrazoğlu
  • 33,241
  • 48
  • 191
  • 389
19
votes
4 answers

Navigationbar coloring in ViewWillAppear happens too late in iOS 10

I am facing a weird bug, that happens only on iOS 10. I have a application with several screens, and each screen colors the navigationBar in viewWillAppear. So when you go to the next screen, it will be properly colored. However, when testing on iOS…
Peterdk
  • 15,625
  • 20
  • 101
  • 140
19
votes
4 answers

iOS 10, NSUserDefaults Does Not Work

I try to write/read values to/from [NSUserDefaults standardUserDefaults], but it seems not to work. My code is: [[NSUserDefaults standardUserDefaults] setObject:@"sampleString" forKey:@"sampleKey"]; [[NSUserDefaults standardUserDefaults]…
antonio
  • 722
  • 11
  • 22
18
votes
3 answers

UNUserNotificationCenter link error

I have an Xcode project, Xcode 8.1 (8B62) with two targets, one for the paid version of the application and the other for the free version. They both manage remotes push notifications. Since I made the changes for iOS 10 with the new framework…
Patrick Bodet
  • 641
  • 2
  • 8
  • 17
18
votes
1 answer

iOS Get list of all WiFi networks

This is not a duplicate of the dozens of similar questions (too many to list) because I have evidence that it is possible to publish an app that displays a list of wifi networks. So, it has been widely accepted and understood that you cannot get a…
jungledev
  • 4,195
  • 1
  • 37
  • 52
18
votes
3 answers

SVG transform rotate by 90, 180 or 270 degrees not working on circle in Safari iOS 10

I want to create a donut chart using an SVG circle element by setting stroke-dasharray and varying stroke-dashoffset. The SVG element needs to be rotated by 270 (or -90) degrees in order for the chart "bar" to start at the top. Here is the…
ilokhov
  • 645
  • 1
  • 4
  • 11
18
votes
6 answers

Creating an image format with an unknown type is an error Objective-C Xcode 8

While choosing an image from the image picker in iOS 10 Objective-C and Xcode 8. I am getting an error - Creating an image format with an unknown type is an error . It was ok for the previous version. Here is my code: UIImagePickerController*…
riaz hasan
  • 1,155
  • 2
  • 8
  • 20