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
53
votes
12 answers

Check internet connection (iOS 10)

For iOS 9 I was using Reachability public class to check wether the device is connected to the internet or not. I converted my Swift 2 code to Swift 3, and the Reachability doesn't work anymore. Can someone tell me how to check the internet…
LOLXDXPLOL
  • 611
  • 1
  • 6
  • 9
53
votes
6 answers

Xcode 8 cannot run on device, provisioning profile problems mentioning Apple Watch

I am running OS X El Capitan and using the Xcode 8 GM seed (8A218a) and I am trying to run my app on my iPhone 6 with iOS 10 GM seed, 10.01 (14A403), which is paired to my Apple Watch running watchOS 3 GM seed (14S326). I am using Match for handling…
Sajjon
  • 8,938
  • 5
  • 60
  • 94
51
votes
11 answers

Why "add Push notification feature to your app id" warning even after push-notification showing enabled in App ID?

I am using Xcode8, swift 3, iOS 10 In Targets -> capabilities showing "add the Push notification feature to your app id". I check my APP ID and it is showing pushnotfication enabled in both development and distribution. With same APP IS and…
New iOS Dev
  • 1,937
  • 7
  • 33
  • 67
48
votes
3 answers

Difficulties converting to Swift 3

After converting from Swift 2 to Swift 3 (even after converting edit-> convert -> to current swift syntax) I am getting lots of errors. Especially: I am shown total 90 errors for my project which was working fine in Swift 2 before i downloaded…
niravdesai21
  • 4,818
  • 3
  • 22
  • 33
47
votes
2 answers

WARNING: Output of vertex shader 'v_gradient' not read by fragment shader

When i run my app in ios 10 using xcode 8 i am getting following message in debug console, and by UI getting freezed can any one know why this is happening ERROR …
Vaisakh
  • 2,919
  • 4
  • 26
  • 44
46
votes
1 answer

Is there a writeToFile equivalent for Swift 3's 'Data' type?

I've some code which returns the new iOS 10 / Swift 3 NSData replacement(?) type: Data if let jpegData = UIImageJPEGRepresentation(newImage, 0.8) { ... } I want to write this image to disk, however NSData's writeToFile: method is not present for…
Kyle G
  • 4,347
  • 4
  • 26
  • 39
45
votes
7 answers

Failed to chmod user/Library/Developer/CoreSimulator/Devices NO Such File Or directory

When i try to run my app in iPhone 6 simulator, i am getting following error. I am using Xcode 8.1 can any one please help me to understand this issue
Vaisakh
  • 2,919
  • 4
  • 26
  • 44
44
votes
4 answers

ISO8601DateFormatter doesn't parse ISO date string

I'm trying to parse this 2017-01-23T10:12:31.484Z using native ISO8601DateFormatter class provided by iOS 10 but always fails. If the string not contains milliseconds, the Date object is created without problems. I'm tried this and many options…
mhergon
  • 1,688
  • 1
  • 18
  • 39
44
votes
13 answers

iOS 10 Safari: Prevent scrolling behind a fixed overlay and maintain scroll position

I'm not able to prevent the main body content from scrolling while a fixed position overlay is showing. Similar questions have been asked many times, but all of the techniques that previously worked do not seem to work on Safari in iOS 10. This…
Gavin
  • 7,544
  • 4
  • 52
  • 72
43
votes
4 answers

IOS HTML disable double tap to zoom

I am designing a website primarily focused on data entry. In one of my forms I have buttons to increment and decrement the number value in a form field quickly. I was using
tchatow
  • 748
  • 1
  • 7
  • 16
41
votes
4 answers

libMobileGestalt MobileGestaltSupport.m:153 MobileGestalt.c:550 Xcode Console

I am getting Following messages on Xcode Console View libMobileGestalt MobileGestaltSupport.m:153: pid 231 (myproject) does not have sandbox access for frZQaeyWLUvLjeuEK43hmg and IS NOT appropriately entitled libMobileGestalt MobileGestalt.c:550:…
Abdul Nasir B A
  • 1,077
  • 2
  • 8
  • 25
41
votes
15 answers

iTunes software service authentication error domain error 434

I am uploading iPhone application using latest xCode 8. I have good internet connection and all the relevant settings set up at iTunes connect. My distribution profiles are also set up correctly. I am facing below error:- iTunes software service…
pkc456
  • 8,350
  • 38
  • 53
  • 109
41
votes
7 answers

ios10: viewDidLoad frame width/height not initialized correctly

Since upgrading to XCode8 GM and ios10, all of my views created via Interface Builder are not being initialized correctly until much much later than expected. This means in viewDidLoad, cellForRowAtIndexPath, viewWillAppear, etc, the frame size is…
Miro
  • 5,307
  • 2
  • 39
  • 64
40
votes
7 answers

NSPhotoLibraryUsageDescription in Xcode8

Update: I attempt to add a String value to the "NSPhotoLibraryUsageDescription" key. And it works.My build version is now available on my TestFlight. ps: 构建版本 means Build Version But I want to know why Apple Store just let me add String value for…
X.Jian
  • 2,134
  • 3
  • 16
  • 23
40
votes
11 answers

UNUserNotificationCenter did receive response with completion handler is never called iOS10, swift 2.3

I am scheduling new notifications in iOS10, like this: func scheduleNotification (event : Meeting, todaysBadgeCounter: Int) { if #available(iOS 10.0, *) { let minutesBefore = 10 //interval in seconds from current point in time…
Async-
  • 3,140
  • 4
  • 27
  • 49