ios10.3

iOS 10.3: Simulator HTTPS localhost: SSL Error

ⅰ亾dé卋堺 提交于 2020-04-05 15:15:11
问题 This worked fine for iOS 10.2 and below, but after upgrading to 10.3, when the simulator attempts to connect over HTTPS to the development server running on localhost, the Xcode console outputs the following errors: NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802) [] nw_coretls_callback_handshake_message_block_invoke_3 tls_handshake_continue: [-9807] Printing out the error returned by the URLSessionDataTask shows: Error Domain=NSURLErrorDomain Code=-1200 "An SSL

iOS 10.3: Simulator HTTPS localhost: SSL Error

荒凉一梦 提交于 2020-04-05 15:14:07
问题 This worked fine for iOS 10.2 and below, but after upgrading to 10.3, when the simulator attempts to connect over HTTPS to the development server running on localhost, the Xcode console outputs the following errors: NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802) [] nw_coretls_callback_handshake_message_block_invoke_3 tls_handshake_continue: [-9807] Printing out the error returned by the URLSessionDataTask shows: Error Domain=NSURLErrorDomain Code=-1200 "An SSL

SiriKit INPayBillIntentHandling - Siri says, “I wish I could, but <App> hasn't set that up with me yet.”

六眼飞鱼酱① 提交于 2020-01-14 13:12:51
问题 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 Project iOS Deployment target is iOS 10.3 AND also enabled the Siri when asked the permission for the first time and also verified that In Settings, Siri is enabled. When I launch the app on device and say "Bill Payment using DemoApp", Siri says "I

SiriKit INPayBillIntentHandling - Siri says, “I wish I could, but <App> hasn't set that up with me yet.”

安稳与你 提交于 2020-01-14 13:11:22
问题 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 Project iOS Deployment target is iOS 10.3 AND also enabled the Siri when asked the permission for the first time and also verified that In Settings, Siri is enabled. When I launch the app on device and say "Bill Payment using DemoApp", Siri says "I

Alternate Icon in iOS 10.3: avoid notification dialog for icon change

▼魔方 西西 提交于 2019-12-30 08:18:05
问题 I'm using this new feature and when the change is made with an active application, a notification dialog is displayed saying that icon has been modified. How to disable this dialog ? 回答1: If you don't mind making use of private method, you can try the following code. - (void)lc_setAlternateIconName:(NSString*)iconName { //anti apple private method call analyse if ([[UIApplication sharedApplication] respondsToSelector:@selector(supportsAlternateIcons)] && [[UIApplication sharedApplication]

Firebase Issues iOS 10.3 on Xcode 8.3 Swift 3 FCM notifications not working

a 夏天 提交于 2019-12-24 11:55:24
问题 I'm working on Xcode 8.3.2 for iOS 10.3.2 with Swift 3 , my project use firebase cloud messaging, when my p12 certificates expired, I updated my certificates p12 to p8 as suggested Firebase's documentation, but the push notifications stopped coming, yesterday when I used the console firebase to test, it was working but today no, the logs print me this as normal: 2017-05-30 10:13:23.932066-0400 lol[5576:1530669] WARNING: Firebase Analytics App Delegate Proxy is disabled. To log deep link

Cordova iOS 10.3.1 breaks input file for videos

为君一笑 提交于 2019-12-21 02:42:54
问题 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 versions going back 45 days, it seems iOS 10.3.1 changed the file input and now there is the multiple video selection, without the "compressing" stage that occurred after selection and before switching out of the interface. Tested on iphone 6S. When

Is it allowed to let the alternate app icon to be dynamic?

こ雲淡風輕ζ 提交于 2019-12-20 02:52:12
问题 Since iOS 10.3 has been released, Apple added a new feature which allows us to change the app icon dynamically, by using setAlternateIconName(_:completionHandler:) method. So far, as mentioned in the method documentation, we have to mention the name(s) of the alternate app icon(s) in the project .plist file, assigned to CFBundlePrimaryIcon key. Actually, when working with static icons (icons that have been added directly to the app main bundle) it works as expected without any problems: My

Prompt when trying to dial a phone number using tel:// scheme on iOS 10.3

断了今生、忘了曾经 提交于 2019-12-17 06:11:24
问题 After updating to 10.3, my app no longer automatically dials a phone number after pressing the call button in my app using the openURL: options: completionHandler: method. Instead, a prompt comes up every time to confirm the user's intentions. As per the Apple Documentation: The tel URL scheme is used to launch the Phone app on iOS devices and initiate dialing of the specified phone number. When a user taps a telephone link in a webpage, iOS displays an alert asking if the user really wants

trimmingCharacters not work on iOS 10.3 Xcode8.3

天大地大妈咪最大 提交于 2019-12-13 10:14:42
问题 Please help me, I use Xcode 8.3(swift 3.1), the function trimmingCharacters not work. My code as below: func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { if var searchStr = textField.text{ let _searchStr = searchStr.trimmingCharacters(in: .whitespaces) print("After trimming:\(_searchStr)") } } The input in textfield is 409 huỳnh and the print result is 409 huỳnh not as expected: 409huỳnh . 回答1: From the documentation: