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
15
votes
3 answers

SwiftUI Gradient rendering incorrect colors on simulator

When running on the simulator, Gradient is rendering colors incorrectly. When running on a device, Gradient renders the colors correctly. How can I get Gradient to render colors correctly on the simulator so that I can capture accurate…
Daniel Storm
  • 18,301
  • 9
  • 84
  • 152
15
votes
1 answer

Does changing the default email app affect MFMailComposeViewController usage?

iOS 14 users can change the default email app. What effect, if any, does this have on MFMailComposeViewController? More specifically, it would be ideal if MFMailComposeViewController "just worked" with whatever the default email client was, for…
mmd1080
  • 1,812
  • 2
  • 17
  • 29
15
votes
6 answers

use @main in Xcode 12

I want to run this code on iOS 13 and above how should I fix this error? I want to make this code could run on iOS 13 too. @available(iOS 14.0, *) @main struct WeatherProApp: App { @Environment(\.scenePhase) private var scenePhase …
Alireza12t
  • 377
  • 1
  • 4
  • 14
15
votes
1 answer

How to change PageTabView programmatically in iOS 14, SwiftUI 2?

I'm exploring new things came in Xcode 12 and SwiftUI 2.0 I have created a pageview onboarding screen with TabView and PageTabViewStyle in Xcode 12, iOS 14, Swift UI 2. I want to add the next button when clicking on it, the page should move to the…
Azhagusundaram Tamil
  • 2,053
  • 3
  • 21
  • 36
14
votes
2 answers

iOS 14 - How to open Default Mail App programmatically?

With iOS14 users can set different email client apps as their default. Is there a way to open the selected default mail app programmatically? Using mailto: URLs, after setting the default mail app to Gmail, don't do anything.
Peter Lendvay
  • 565
  • 4
  • 22
14
votes
6 answers

Selected list row's background remains grey (selected) after navigating back in List (SwiftUI). iOS14 + Xcode12

The selected row remains grey after navigating back from the detail view. Happening both on simulator and real device, only on iOS 14. Does anyone know how to remove it so it behaves the same as on iOS 13 (doesn't remain selected)? This is the only…
boldi24
  • 143
  • 1
  • 6
14
votes
7 answers

UIPageControl not visible in iOS 14

I have a UIPageControl that has worked fine in my production app for the last 6 months. However, after updating all my test devices to iOS 14 and updating Xcode to v12, my UIPageControl I have in a tableView cell is no longer visible. I have changed…
Rage
  • 870
  • 9
  • 27
14
votes
5 answers

iOS14 navigationItem.largeTitleDisplayMode = .always not work

I have a ViewController and a DetailViewController, in the ViewDidLoad of the ViewController I set the following code, the purpose is to make the ViewController always use the large title self.navigationController?.navigationBar.prefersLargeTitles =…
BaQiWL
  • 417
  • 5
  • 14
14
votes
3 answers

How to make a SwiftUI DocumentGroup app without starting on the file picker?

If a user uses the Document App template in Xcode to create a SwiftUI app, macOS starts them off with a new document. This is good. I can work with that to present onboarding UI within a new document. However, with that same app running on iOS, the…
MScottWaller
  • 3,321
  • 2
  • 24
  • 47
13
votes
1 answer

nil host used in call to allowsSpecificHTTPSCertificateForHost - ionic - ios14

Whenever I am trying to run my app on IOS 14 simulator I am getting this error multiple times. "nil host used in the call to allowsSpecificHTTPSCertificateForHost" I have tried putting this in AppDelegate.m file also but did not work.
kshitij agrawal
  • 149
  • 1
  • 5
13
votes
3 answers

iOS 14 widgets are displayed black on live app

I am working on application in which i am using widgetkit extension. i have got one wierd issue like widget is displaying properly on development side, but when i make application live it displays the blank (black) widget to the user. Screenshot…
Tejas Patel
  • 850
  • 10
  • 26
13
votes
5 answers

Unable to Tap Days in iOS 14 inline DatePicker

I'm trying to create an expandable/collapsible date picker (similar to Apple's date picker in the Date & Time section of the Settings app). I have a tableview that can have a button as one of its table cells. That button shows the currently picked…
Alzeon
  • 283
  • 2
  • 9
13
votes
7 answers

flutter: running pod install takes forever while building in debug mode

Using iphone 11 iOS-14 device and simulator, I have deleted THE podfile and podlock of my flutter app and trying to rebuild the app in debug MODE, i am using the latest firebase dependencies including cloud_firestore: ^0.14.1 dependency then it gets…
azheen
  • 897
  • 4
  • 15
  • 30
13
votes
5 answers

iOS 14 Widget Not Refreshing

Update: I have tried setting the policy on the timeline to .atEnd, since there is only one entry. This has not made a difference. I have tried both in the RSS Parser file, and in the AppDelegate to run the WidgetCenter reloadAllTimeLines method, and…
user717452
  • 33
  • 14
  • 73
  • 149
13
votes
2 answers

Problem with gesture in Xcode 12 and iOS 14

I have a problem after upgrading to Xcode 12 and iOS 14. Scenario: I have a Nested UITableView: nestedTableView. Like below class GAllowGestureEventPassTableView: UITableView, UIGestureRecognizerDelegate { var allowGestureEventPassViews:…
Django Free
  • 491
  • 4
  • 10