Questions tagged [ios14]

Use for questions specific to Apple's iOS 14 mobile operating system, released in 2020. General iOS questions should use the [ios] tag.

iOS 14 is the fourteenth version of Apple's iOS mobile operating system. Its beta version was announced at the company's Apple Worldwide Developers Conference (WWDC) on 22 June 2020. The ios14 tag should be used for questions specific to Apple's iOS 14 operating system. General iOS questions should use the tag.

Notable new features

Excerpt from https://www.apple.com/ios/ios-14-preview/:

  • Widgets on the Home Screen
  • Compact calls
  • Picture in Picture
  • Maps: Cycling directions, Electric vehicle routing, Guides
  • Siri: Compact design, Greater knowledge, Web answers, Send audio messages
  • Home: Suggested automations, Home status, Adaptive Lighting, Activity Zones, Face Recognition
  • Safari: Translation, Password monitoring, Privacy Report
  • Car keys and CarPlay: Car keys in Wallet, Share and manage keys, Power reserve, CarPlay wallpaper and new app types
  • AirPods: Spatial audio, Battery notifications, Automatic switching, Headphone Accommodations, Audio Sharing for Apple TV
  • App Clips
  • Privacy: Privacy information on the App Store, Recording indicator, Upgrade to Sign in with Apple, Approximate location
  • ARKit 4
  • Set default email and browser apps

Release notes: https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-14-beta-release-notes

1139 questions
9
votes
1 answer

Creating Menu in SwiftUI - receive output message of [UILog] Called -[UIContextMenuInteraction updateVisibleMenuWithBlock:]

I'm attempting to create a pull down menu in SwiftUI , the menu seems to be fully visible on the device/simulator and I can interact with it but I get the following message: [UILog] Called -[UIContextMenuInteraction updateVisibleMenuWithBlock:]…
BobdeBloke
  • 149
  • 1
  • 6
9
votes
3 answers

Pound symbol added to URL in ios 14

I have a running app in a webserver, that redirects to an app installed on a iOS 14 device. the url is in the form of myapp://?p=someBase64EncodedString and the application is decoding the string. after upgrading to iOS 14, the url the app gets…
Nati
  • 1,034
  • 5
  • 19
  • 46
9
votes
0 answers

Swift Realm issue in iOS 14+

------LE: We ended up removing the encryption of the database because with realm team suggestions it got worse - all we could do was to remove the database and loose all stored info. Now we encrypt in keychain only the fields we need.------ I have…
Aura
  • 246
  • 1
  • 10
9
votes
4 answers

Change GroupBox background color in SwiftUI

How can I change the default gray background color of a GroupBox view in SwiftUI? I tried adding a background modifier, but this just changes the white background underneath the box (see screenshot). GroupBox(label: Text("Label"), content: { …
JacobF
  • 2,305
  • 3
  • 24
  • 36
9
votes
2 answers

iOS 14 Widget auto-refresh every day

I have played around with the new iOS 14 widgets, and seems to be working almost fine, except the auto-refresh. My goal is to have my widget refreshed every midnight (so, only once per day, and of course occasionally if something happens in my app).…
zdtorok
  • 594
  • 1
  • 7
  • 21
9
votes
2 answers

Media Items in JSQMessageViewController's Collection cells are not showing in IOS 14

I am using JSQMessageViewController and I am facing the issue (only in ios14) that i cant see media items like Images, Video and Audio in device though these views are generating debug view hierarchy. See below attached image:- debug view hierarchy…
Ali Mehdi
  • 255
  • 5
  • 9
9
votes
1 answer

WKWebView on iOS 14 only loads content after a significant delay

There seems to be some issue with loading content in WKWebViews in iOS 14. Whenever something is loaded (either a webpage or html string) it takes 25 seconds before the loading actually starts. I've tried this with a production project and a couple…
Daniel Andersson
  • 3,083
  • 2
  • 11
  • 9
9
votes
2 answers

How do I see if the size of my iOS 14 app clip is below 10MB?

I have been building an app clip using the Xcode 12 beta. According to the documentation the application should be less than 10MB, but I have no way of seeing if I am actually below this limit.
Lucas van Dongen
  • 9,328
  • 7
  • 39
  • 60
9
votes
2 answers

How to get UIWindow value in iOS 14 @main file?

I can able to access didFinishLaunchingWithOptions by below implementation. But, I need UIWindow variable. I don't know how to get it. I'm using Xcode 12 beta. iOS14, SwiftUI lifecycle. import SwiftUI @main struct SSOKit_DemoApp: App { …
Azhagusundaram Tamil
  • 2,053
  • 3
  • 21
  • 36
8
votes
2 answers

How to get SSID of currently connected Wifi Network in swift | iOS 14?

I need to get ssid of currently connected network. The reason I need this is to enable my app to perform certain functions when connected to a specific network. Now I cant seem to figure it out as in how to get the ssid? I've read online and…
Abu Bäkr
  • 313
  • 1
  • 2
  • 10
8
votes
2 answers

iOS 14 UISplitViewController remove "hide/show" button in landscape on iPad?

In iOS 14, the new split view controller handles the bar button items for you. That's cool! So in portrait we see this: We're in portrait, so that button at the top left summons the "overlay" version of the Primary column. And in landscape we see…
matt
  • 515,959
  • 87
  • 875
  • 1,141
8
votes
1 answer

Swift iOS14 DatePicker text alignment

I want my date picker to show the text right aligned as it is contained in an right aligned tableView. I'm using the iOS 14 default style were selecting the date picker ends up in a popover to select the date, so by default the label is left aligned…
Philipp Rosengart
  • 713
  • 1
  • 8
  • 20
8
votes
3 answers

NSKeyValuePopPendingNotificationLocal Crash on iOS 13 and 14

I am getting a crash on the live app I am working on and I can't seem to recreate or find the issue. This is the crash output: `Crashed: NSOperationQueue 0x123e7d5c0 (QOS: UNSPECIFIED) 0 libobjc.A.dylib 0x184a52198 objc_release +…
8
votes
3 answers

How to trigger the local network dialog authorization for multicast entitlement using iOS 14

Following iOS 14 new policy of blocking access to local network, a com.apple.developer.networking.multicast special entitlement is needed to access the local network, and this access should be confirmed by user during an authorization dialog.…
Daniel Mavrakis
  • 572
  • 10
  • 17
8
votes
1 answer

ML Build error for Catalyst (Xcode 12 GM)

Anyone else having issues with the GM release with ML models and has a solution for this? I get the following error: Type 'MLModel' has no member '__loadContents' I have cleaned the Project + deleted derived data (this is a generated file that is…