ios11

Missing CFBundleIconName in Xcode9 iOS11 app release

孤街浪徒 提交于 2019-12-28 03:31:04
问题 I'm struggling to release a new version of our app using Xcode 9 built with iOS 11 SDK. Archiving and uploading the binary goes well without any issue. The build appears in iTunes Connect under Activity as 'processing' and it gets disappear and I get the following email back. Dear developer, We have discovered one or more issues with your recent delivery for "". To process your delivery, the following issues must be corrected: Missing Info.plist value - A value for the Info.plist key

iOS 11 Safari bootstrap modal text area outside of cursor

我的梦境 提交于 2019-12-27 16:39:26
问题 With iOS 11 safari, input textbox cursor are outside of input textbox. We did not get why it is having this problem. As you can see my focused text box is email text input but my cursor is outside of it. This only happens with iOS 11 Safari 回答1: I fixed the issue by adding position:fixed to the body when opening a modal. Hope this will help you. 回答2: Personally, position: fixed scroll to top automatically . Quite annoying ! To avoid penalizing other devices and versions I apply this fix only

Navigation Title View Issue in iOS 11

拟墨画扇 提交于 2019-12-25 08:49:38
问题 I am facing an issue on Navigation bar items in iOS 11 as below screen shot and the two bar button also not executing any button actions. It is working perfectly on iOS 10.x.x and below with same auto layouts and size. Following screenshot is showing how custom Navigation bar IB implemented. . I tried with following codes too.. if (@available(iOS 11.0, *)) { [[self navigationController] navigationBar].prefersLargeTitles = NO; [[self navigationController] navigationItem].largeTitleDisplayMode

How to get the list of applications suitable for routing from the user’s device?

女生的网名这么多〃 提交于 2019-12-24 20:31:29
问题 Is there any way to check if user has a certain app (google.maps, yandex.maps or native maps) on his/her device to make a list of apps suitable for routing? 回答1: You can check if user has this apps on device (google.maps, yandex.maps or native maps) using URL scheme. for Google maps: let appURL = URL(string: “comgooglemaps://”) if UIApplication.shared.canOpenURL(appURL!) { // code for open URL print(“Can Open URL”) } 来源: https://stackoverflow.com/questions/53852623/how-to-get-the-list-of

ARSCNView freezes when adding 14 ARAnchor subclass objects with strong reference

耗尽温柔 提交于 2019-12-24 19:39:01
问题 I have next code: guard let feauturePoint = frame.hitTest(normalizedPoint, types: .featurePoint).first?.worldTransform else { return } let anchor = MyAnchorSubclass(transform: feauturePoint, plus: someAdditionalInfo) arSession.add(anchor: anchor) This function creates and adds object of my subclass of ARAnchor. Then... func renderer(_ renderer: SCNSceneRenderer, didAdd node: SCNNode, for anchor: ARAnchor) { guard let anchor = anchor as? MyAnchorSubclass else { return } anchors.append(anchor)

Offline HLS Fairplay playback error when the app is closed, code 16227

两盒软妹~` 提交于 2019-12-24 14:23:34
问题 I'm implementing Offline Playback with HLS Fairplay following the demo in the FairPlay Streaming Server SDK v4.0.1 that uses AVContentSessionKey. I download three contents, each content is downloaded and persisted correctly, both the .movpkg and its content key on the documents directory, when I turn off the WIFI these three contents downloaded plays correctly without any problems, before playing Im using this code: let urlAsset = element.urlAsset! ContentKeyManager.shared.contentKeySession

Ionic 3 statusbar top gap on Iphone X (w/ simulator) [duplicate]

 ̄綄美尐妖づ 提交于 2019-12-24 12:21:57
问题 This question already has an answer here : Ionic - White edge on iPhone X in header (1 answer) Closed last year . Is there any working trick to solve this design bug? I'm using cordova-plugin-ionic-webview, "viewport-fit=cover" has been added to index.html. 回答1: It is related to the status bar plugin , which was fixed and merged successfully but it didn't release yet. you can try that plugin directly , for that you need to remove the plugin and installing it from the github url cordova plugin

Why location updates in background mode is slow after iOS 11 update?

北城余情 提交于 2019-12-24 12:14:54
问题 iOS used to wake up my app in background when it was killed, during location updates. After updating to iOS 11, the "wake up" process takes longer (after the user covered a distance of a mile or 2). I haven't seen any new changes to the location manager documentation which relates to this. Any one else experiencing the same issue?? 来源: https://stackoverflow.com/questions/46361459/why-location-updates-in-background-mode-is-slow-after-ios-11-update

App installation failed : This application does not support this device’s CPU type

心不动则不痛 提交于 2019-12-24 12:06:21
问题 I get an error when I try to load my application on iPhone7 in Xcode9.2. version of Iphone7 is ios11.0. thanks for your help. 回答1: One thing you can check in your project is that you have selected 'Standard Architectures' in Project's Build Settings. As in below image. 回答2: In my case 'Standard Architectures' in Project's Build Settings was set, yet I was getting this error. So the thing that fixed it for me was changing the value of "Mach-O Type" to Executable 来源: https://stackoverflow.com

Trigger In-App-Browser after tapping on Annotation with PDFKit - iOS 11

谁都会走 提交于 2019-12-24 09:33:32
问题 I´m working on an app with Apple's PDFKit and have managed to put some Annotation-Buttons with a working PDFActionURL , which open the iOS standard browser after tapping on them. Unfortunately, I did not find a working solution, how to open the associated links in an In-App-Browser or to load it in a webview. After tapping the AnnotationButton PDFKit automatically opens Safari and I haven´t found a property or another way concerning iOS to influence this behavior by manipulating f.e. the