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
34
votes
7 answers

edgesIgnoringSafeArea on TabView with PageTabViewStyle not working

Using a TabView as a pageviewer by using .tabViewStyle(PageTabViewStyle()) works fine, but trying to let it run from edge to edge by applying edgesIgnoringSafeArea does not seem to work. What am I missing here? struct ContentView: View { let…
Tieme
  • 62,602
  • 20
  • 102
  • 156
33
votes
9 answers

iOS 14 Invalid frame dimension (negative or non-finite)

My App uses GeometryReader with some padding to setup a View frame dimension inside a NavigationView. Since iOS 14 i get the following error message: Invalid frame dimension (negative or non-finite) Here is some example code to test: import…
Franco
  • 441
  • 1
  • 4
  • 3
32
votes
5 answers

Xcode 12 build target in wrong order for simulator?

My project always runs correctly on all devices using Xcode 11, but after I installed Xcode 12 beta 4, it is failing to build on the simulator. I compared the build logs of Xcode 11 and Xcode 12 and it seems in Xcode 12 that my main target is being…
ximmyxiao
  • 2,622
  • 3
  • 20
  • 35
32
votes
4 answers

Xcode 12 - AppName's architectures (arm64) include none that iPhone 11 Pro can execute (Intel 64-bit)

Im getting AppName's architectures (arm64) include none that iPhone 11 Pro can execute (Intel 64-bit). error on Xcode 12 beta-3, I have set below Architectures x86_64 armv7s arm64 how to resolve this error?
Keshav
  • 2,965
  • 3
  • 25
  • 30
32
votes
12 answers

How to remove List Separator lines in SwiftUI 2.0 in iOS 14 and above

So the question is pretty simple and it's in the title. I want to remove the line separator in SwiftUI iOS 14. Previously, I was using UITableView().appearance().separatorStyle = .none and that used to do the job in iOS 13. Now however, it doesn't…
Osama Naeem
  • 1,830
  • 5
  • 16
  • 34
31
votes
8 answers

What triggers the "would like to find and connect to devices on your local network" permission notification on iOS 14?

What actual method calls, excluding Bonjour, triggers the "would like to find and connect to devices on your local network" permission notification on iOS 14? This is the screen shot from the WWDC session on this new permission. Which is only…
William GP
  • 1,252
  • 1
  • 14
  • 29
31
votes
13 answers

Failed to get descriptors for extensionBundleID

After adding an extension target to Xcode project and trying to run it on iOS 14, I'm getting an error: SendProcessControlEvent:toPid: encountered an error: Error Domain=com.apple.dt.deviceprocesscontrolservice Code=8 "Failed to show Widget '***'…
Vladyslav Zavalykhatko
  • 15,202
  • 8
  • 65
  • 100
29
votes
13 answers

Xcode 12: Failed to start remote service "com.apple.debugserver" on iOS device

I updated my Xcode to Version 12.4 (12D4e) and after that I am unable to run my app on my device iPhone X iOS 14.4.2. Its alway show this Error When I check my device connected status, Its show as connected Action I applied Clear DerivedData…
iDeveloper
  • 2,339
  • 2
  • 24
  • 38
29
votes
2 answers

IOS 14 UNNotificationPresentationOptions.list, .banner vs alert

Hello I am trying to display some notification datas. In my notification I have a notification id to react deferently based on the pushed information. I just cannot see what are those new UNNotificationPresentationOptions. in…
FitzChill
  • 815
  • 8
  • 18
29
votes
1 answer

"Spotlight quit unexpectedly" in MacOS Catalina version 10.15.4, This crash happening after I have installed Xcode 12

I have shown below logs repeatedly. This crash happening after I have installed Xcode 12 in MacOS Catalina version 10.15.4 Any one please help me to fixing this crash. Process: Spotlight [3454] Path: …
Jitendra Chauhan
  • 974
  • 8
  • 10
29
votes
8 answers

Xcode 12 - No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=arm64e armv7s arm64 arm7)

Since I update Xcode to Xcode 12, I've got this error when I build : Check dependencies No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=arm64e armv7s arm64 arm7) I try a lot of things : Uninstall/reinstall…
Pentagura
  • 551
  • 2
  • 8
  • 25
29
votes
1 answer

SwiftUI iOS14 - NavigationView + List - Won't fill space

I'm having an issues with a List inside a NavigationView since iOS 14 update. Here is a simple breakdown of the code - I've striped everything that doesn't show the issue struct ContentView: View { var views = ["Line 1", "Line 2", "Line…
29
votes
2 answers

how to use iOS 14 cell content configurations in general?

I'm watching and rewatching WWDC 2020 "Modern cell configuration" but enlightening does not strike. I understand that the built-in ListContentConfiguration has properties similar to the built-in cell style components like the text label and the…
matt
  • 515,959
  • 87
  • 875
  • 1,141
29
votes
4 answers

How to modify UIMenu before it's shown to support dynamic actions

iOS 14 adds the ability to display menus upon tapping or long pressing a UIBarButtonItem or UIButton, like so: let menu = UIMenu(children: [UIAction(title: "Action", image: nil) { action in //do something }]) button.menu = menu barButtonItem =…
Jordan H
  • 52,571
  • 37
  • 201
  • 351
28
votes
3 answers

Tons of errors due to set arm64 in Excluded Architectures in iOS 14.2 simulators

first of all disclaimer: I'm using Mac Mini with Apple Silicon M1. I have set arm64 in Excluded Architectures due to the known error in Xcode 12: The linked framework 'XXXXXX' is missing one or more architectures required by this target:…
juanjovn
  • 492
  • 4
  • 8
1
2
3
75 76