Questions tagged [ios10.3]

121 questions
7
votes
3 answers

iOS 10.3 - How to respond to App Store reviews?

Now that iOS 10.3 is out, how do us developers go about responding to reviews on our apps. I've tried iTunes Connect, the App Store on Mac and iOS, as well as the Connect iOS app. I'm logged into my developer account on all devices/apps and still…
Mike
  • 9,765
  • 5
  • 34
  • 59
6
votes
2 answers

UITableView/UICollectionView scrolling looks choppy after Xcode 9.0 and iOS 11

I have four pages in the iPhone app. All 4 pages are subclass of UIViewController. Two pages have UITableView to show list of items. Two pages have UICollectionView to show data. All data fetched from web-service with help of AFNetworking. It comes…
Vishal Gabani
  • 421
  • 2
  • 5
  • 12
6
votes
3 answers

App not receiving VOIP after x time on iOS 10.3 >

I've got a project I'm working on which uses VOIP notifications to "wake up" apps that have been put into background/terminated. These notifications are sent periodically, and everything seemed to work fine until recent iOS updates. It appears that…
royherma
  • 4,095
  • 1
  • 31
  • 42
6
votes
0 answers

userDefaults reset / wiped after iOS 10.3 update

In my SpriteKit game I use UserDefaults to save high scores etc. Works fine, everything working smoothly. however - I just updated some devices to iOS 10.3 (release, not beta) and I noticed that previously saved data is wiped... new data is…
Adam
  • 373
  • 4
  • 13
6
votes
3 answers

iOS 10.3 beta 3 doesn't persist data of KeychainItem

I have observed behavior of app in iOS 10.2.1 device and iOS 10.3 beta 3 device for https://developer.apple.com/library/content/samplecode/GenericKeychain/Introduction/Intro.html Keychain data is being deleted in iOS 10.3 beta 3. That was still…
DipakSonara
  • 2,598
  • 3
  • 29
  • 34
5
votes
3 answers

SiriKit INPayBillIntentHandling - Siri says, "I wish I could, but hasn't set that up with me yet."

I'm integrating Sirikit, Bill Payment using the intent: INPayBillIntentHandling (which was released recently in iOS 10.3+, 27 Mar 2017). Apple Documentation is here. Note: I'm using Obj-C Language, XCode 8.3, Device iPhone 6S with iOS 10.3 & Demo…
Imad Ali
  • 3,261
  • 1
  • 25
  • 33
5
votes
1 answer

WKWebView iOS 10.3 crash for didReceiveAuthenticationChallenge?

func webView(webView: WKWebView, didReceiveAuthenticationChallenge challenge: NSURLAuthenticationChallenge, completionHandler: (NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void) { var user: String? var password: String? …
Ankit Srivastava
  • 12,347
  • 11
  • 63
  • 115
4
votes
1 answer

When I use requestReview function of StoreKit, is there any way to know if the user has clicked on Submit or Not Now or Cancel button?

I am using the SKStoreKitReviewController in 10.3 and above to request a rating of the app. The alert is displayed. However, I need to implement a logic, wherein, if the user has already rated the app for one major release then I should not ask the…
4
votes
1 answer

How to access an array from another class/file in Swift

Having trouble with this in swift. I have a “products" array in “Products.swift” class. When i try to access “products” array into “SortLauncher.swift” class its returns “nil” Here is my code Products.swift import Apollo class Products:…
4
votes
1 answer

issue with fopen in ios 10.3 when file name has unicode(utf8) characters

I am trying to create a file called 'abcó.txt' in documents folder in iOS 10.3. fopen() is succeeding but file is not created. Any idea why? Following is my code. void test_fopen(){ const char *docsFolder = [[[[NSFileManager defaultManager]…
4
votes
0 answers

Cordova iOS 10.3.1 breaks input file for videos

This is similar to this much older issue: HTML file input with multi selection in UIWebView not working for videos This is NOT a duplicate of this: iOS update to 10.3.1 breaks HTML input element I have tested this on my app that was working, on…
meir
  • 71
  • 1
  • 7
4
votes
2 answers

discoverAllIdentities & discoverUserIdentity returning nil for CKUserIdentity.lookupInfo as of iOS 10.3

CKContainer.discoverAllIdentities(completionHandler:), discoverUserIdentity(recordID: - completion handler returns CKUserIdentity but .lookupInfo is always nil even when contacts contain email, phone, etc. Other properties such as hasiCloudAccount,…
Wizkid
  • 1,015
  • 10
  • 10
4
votes
0 answers

iOS 10.3: NSStrikethroughStyleAttributeName is not rendered

It's my function written in String extension. It will return an attributted string. Its not rendering attributed text on my UILabel. func strikeThroughLine(color: UIColor, textFont: UIFont, textColor: UIColor) -> NSAttributedString { let…
4
votes
2 answers

Is there a way to rebuild Dexie keys?

I had a working app that uses Dexie. After upgrading to iOS 10.3, lookups by key are not working. (This is actually an indexeddb problem, not Dexie per se, I'm sure.) I'm still in shock but I have been able to confirm that the data is there by…
Qoregexp
  • 41
  • 1
3
votes
0 answers

Gap above first table with using UISearchController

I am not able to remove gap over first table row when testing with iOS 10.3. I tried all solutions suggested on other posts like automaticallyAdjustsScrollViewInsets, added a dummy view above UITableView in hierarchy, e.g. here - but all without …
ashishn
  • 410
  • 5
  • 18
1
2
3
8 9