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
28
votes
3 answers

Error: received error: [57] Socket is not connected - iOS 10

I just updated to Xcode 8 and iOS 10. After creating a build, I'm running into an error which I think is contributing to some data not getting fetched. I don't know where to go from here, but it appears to be related to http calls somehow. Either…
Jono Tho'ra
  • 1,476
  • 3
  • 18
  • 28
28
votes
10 answers

clipsToBounds causes UIImage to not display in iOS10 & XCode 8

I switched my project over to new beta versions of iOS 10 and XCode 8. In all three areas of my app where I use: imageView.layer.cornerRadius = imageView.frame.size.width/2 imageView.clipsToBounds = true The associated images are not displaying at…
cloudcal
  • 505
  • 1
  • 4
  • 9
27
votes
6 answers

How to check if Haptic Engine (UIFeedbackGenerator) is supported

I am wondering how we could check if the new iOS 10 API UIFeebackGenerator is available on the current device. There are some more things we would need to check: The device needs to run iOS 10.0 or later The device needs to be an iPhone 7 or…
Hans Knöchel
  • 11,422
  • 8
  • 28
  • 49
26
votes
7 answers

UITableViewCell animate height issue in iOS 10

My UITableViewCell will animate it's height when recognizing a tap. In iOS 9 and below this animation is smooth and works without issues. In iOS 10 beta there's a jarring jump during the animation. Is there a way to fix this? Here is a basic example…
cnotethegr8
  • 7,342
  • 8
  • 68
  • 104
26
votes
3 answers

Handling user notifications on iOS 10

I have troubles determining when the user taps on a user push notification on iOS 10. So far, I have been using the -[UIApplicationDelegate application:didReceiveRemoteNotification:fetchCompletionHandler:] which is called when Case 1: the…
Jan
  • 7,444
  • 9
  • 50
  • 74
25
votes
4 answers

ld: library not found for -lcrt1.3.1.o error while running app in device with xcode 8.0 with iOS10

After upgrading xcode to 8.0, my application project build with error for device target but building successfully for simulator. Error is like: ld: library not found for -lcrt1.3.1.o What does the solution for this error.
Sandip Patel - SM
  • 3,346
  • 29
  • 27
25
votes
5 answers

ios10 custom push notification sound not playing

I am currently running iOS 10 beta 8 with Xcode 8.0 beta 6 and the custom sound does not play when I receive a push notification with the correct payload. I have verified the payload and it is in the correct format per the apple documentation: { …
David Truong
  • 462
  • 4
  • 13
24
votes
10 answers

iOS 10 don't call Notification Service Extension

I tried to implement the new Notification Service Extension, but I have a problem. In my NotificationService.swift file I have this code: class NotificationService: UNNotificationServiceExtension { var contentHandler: ((UNNotificationContent) ->…
just
  • 1,900
  • 4
  • 25
  • 46
24
votes
7 answers

iPad Application shows app icon as launch screen in iOS 10

In iPad iOS 10 Application shows app icon as launch screen / Splash screen if we don't provide any launch screen. I had not set any launch screen or image. And LaunchImage asset is blank. It looks weird. see Is it bug ? or feature? FYI…
Toseef Khilji
  • 17,192
  • 12
  • 80
  • 121
23
votes
1 answer

Getting loaded vs visible cells on a UITableView or UICollectionView

With the introduction of iOS 10, it seems like we're going to have prefetching enabled by default on UITableView and UICollectionViews. This means that cells that aren't displayed on the screen are going to be fetched before the user actually sees…
Senseful
  • 86,719
  • 67
  • 308
  • 465
23
votes
3 answers

What is the height of the new iOS 10 Today Widget/Extension?

I am building an iOS Today widget, and while testing for iOS 10 I noticed that all widgets are now being given the same height (previous versions allowed the dev to set the height). What is the ideal height/what is the best practice for dealing with…
user3658503
  • 231
  • 1
  • 2
  • 3
22
votes
4 answers

iOS 10 How to view a list of pending notifications using UNUserNotificationCenter?

Solution Code: let center = UNUserNotificationCenter.current() print(center.getPendingNotificationRequests(completionHandler: { error in // error handling here })) My original post: I am trying to get a list of pending notifications…
Ian Kohlert
  • 484
  • 1
  • 4
  • 15
22
votes
4 answers

iOS 10 heading arrow for MKUserLocation dot

The Maps app in iOS 10 now includes a heading direction arrow on top of the MKUserLocation MKAnnotationView. Is there some way I can add this to MKMapView in my own apps? Edit: I'd be happy to do this manually, but I'm not sure if it's possible?…
Ben Williams
  • 4,695
  • 9
  • 47
  • 72
22
votes
1 answer

CNUI ERROR Contact view delayed appearance timed out

I am trying to show the Contacts add new contact view with the ContactsUI framework in iOS 10. The code that I am using to present CNContactViewController the is the following: let contactViewController = CNContactViewController(forNewContact:…
rockdaswift
  • 9,613
  • 5
  • 40
  • 46
21
votes
2 answers

iOS simulator version doesn't appear - Xcode 12.2

I want to test my app in iOS 10, I'm just have tried the flow of add a new iOS simulator like I've made in the past, but the iOS version that I downloaded dons't appear in the list. I'm using the Xcode 12.2 When I try to add a new simulator the iOS…
M. Mansuelli
  • 1,083
  • 9
  • 19