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
40
votes
10 answers

Debug Notification Extensions

I'm building a set of Notification Extensions (Service/Content). I'm unable to connect to Xcode debugger or even log out to the device log or console. Is there any way to see any kind of output?
dogsgod
  • 6,267
  • 6
  • 25
  • 53
39
votes
4 answers

Your account already has a signing certificate for this machine but it is not present in your keychain

I get this error, verbatim, when trying to build and install to a device. This is my environment: Xcode 8 El Capitan Has anyone run into this problem? How did you solve it? Thank you
Sheamus
  • 6,506
  • 3
  • 35
  • 61
38
votes
6 answers

iOS 10 GM with xcode 8 GM causes views to disappear due to roundedCorners & clipsToBounds

I tested my app with iOS 10 Beta 7 and Xcode 8 beta and everything worked fine. However just a few minutes ago I installed the now available GM releases of both and faced a weird issue. I am using custom table view cells in my app and in my custom…
37
votes
3 answers

Deleting all data in a Core Data entity in Swift 3

Is there a way to do a batch delete of all data stored in all of the entities in core data? I read somewhere that in iOS 9 or 10 that apple introduced a way to do batch deletes, but I can't seem to find any good information on it. Ultimately, I just…
John Hubler
  • 877
  • 1
  • 11
  • 27
36
votes
13 answers

Unable to boot device due to insufficient system resources using Xcode 9

When I try to launch an iOS Simulator from Xcode 9, the following error pops up:
Sanoj Kashyap
  • 5,020
  • 4
  • 49
  • 75
36
votes
3 answers

Falling back to loading access token from NSUserDefaults because of simulator bug

Xcode log show the above error while running in Xcode 8.1, ios 10.1. Is there any problem or should I ignore and continue?
Ramkumar
  • 369
  • 1
  • 3
  • 4
35
votes
3 answers

How to sync records between Core Data and CloudKit efficiently

I'm currently learning how to use CloudKit Framework and lack of documentation or examples showing how to sync Core Data and CloudKit. I have watched all WWDC videos (2014, 2015, 2016) Dedicated to CloudKit, but none of them telling us how to…
Adelmaer
  • 2,209
  • 3
  • 22
  • 45
35
votes
3 answers

(NSFetchedResultsController): couldn't read cache file to update store info timestamps

I upgraded my project to Xcode 8. Now, I'm getting this error log with Xcode 8 and iOS 10 combination. Setting the cacheName to nil in the below code seems fix it. NSFetchedResultsController *frc = [[NSFetchedResultsController alloc]…
iCanCode
  • 1,001
  • 1
  • 13
  • 24
35
votes
3 answers

Resume NSUrlSession on iOS10

iOS 10 is going to be released soon so it worth to test applications for compatibility with it. During such test we've discovered that our app can't resume background downloads on iOS10. Code that worked well on previous versions does not work on…
Alexey Guseynov
  • 5,116
  • 1
  • 19
  • 29
34
votes
2 answers

Runtime issues with iOS 10/XCode 8

Since I built and started running app on iOS 10 simulator, I started getting logs such as : objc[6880]: Class PLBuildVersion is implemented in both…
Deepak Sharma
  • 5,577
  • 7
  • 55
  • 131
34
votes
4 answers

Core Data viewContext not receiving updates from newBackgroundContext() with NSFetchedResultsController

In my application, I have a NSFetchedResultsController to load Core Data objects in a UITableView. The fetch request associated with this FRC uses the new viewContext property available for the NSPersistentContainer (iOS10). When I select a cell, I…
33
votes
3 answers

PHPhotoLibrary crashed when getting placeholderForCreatedAsset

I try to put image to custom album with this code: PHAssetCollection *album = [self getMyAlbum]; UIImage *image = [self getMyImage]; [[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{ PHAssetChangeRequest *createAssetRequest =…
Ancle
  • 465
  • 4
  • 11
33
votes
9 answers

How to resize the collection view cells according to device screen size?

I noticed that the cells would always follow the definition in size inspector. Even if I have already applied UICollectionViewDelegateFlowLayout. So that's how it looks. But I want the cells to rather look like how it was on a smaller iphone…
Chris Mikkelsen
  • 3,987
  • 9
  • 29
  • 41
33
votes
5 answers

iOS 10 App has crashed because it attempted to access privacy-sensitive data

I'm running my project which was working fine previously but after updating my xcode my app crashes and giving this error: This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist…
Irfan
  • 4,301
  • 6
  • 29
  • 46
33
votes
1 answer

UIUserNotificationSettings deprecated in iOS 10

I am looking for the alternate way of implementing UIUserNotificationSettings in iOS 10. Apple documentation has given the below framework for the further usage. UNNotificationSettings in the link here. Is there any one who can help me with the…
Praveen Kumar
  • 1,338
  • 3
  • 20
  • 31