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
13
votes
5 answers

Your Xcode version may be too old for your iOS version

I have updated my phone's OS version to iOS 14 and spent today updating Xcode to version 12, yet when I try to build my Flutter app on my iPhone 11 - iOS 14 through Android Studio, it gives me this error: Your Xcode version may be too old for your…
azheen
  • 897
  • 4
  • 15
  • 30
13
votes
2 answers

iOS 14 has Changed (or broken?) SwiftUI GeometryReader

As of today's release of iOS 14.0 my iOS code, which depends heavily on GeometryReader for layout, is no longer working well. I.e, layout has been kind of randomized. In the Xcode debugger I have compared the same code running on iOS 13.6 vs iOS…
lp1756
  • 846
  • 1
  • 9
  • 18
13
votes
3 answers

Firebase Analytics: is it using IDFA on iOS?

Given the upcoming iOS 14 permission prompt for apps that use the IDFA identifier, I am wondering if Firebase Analytics and Firebase Auth do need to access the IDFA in order to operate. In such case, are we then required to state that the app is…
Daniele B
  • 19,801
  • 29
  • 115
  • 173
13
votes
2 answers

SwiftUI Image clipped to shape has transparent padding in context menu

In my SwiftUI app, I have an image in my asset catalog with an aspect ratio of 1:1. In my code, I have an Image view with a different aspect ratio that clips the image to the new size: Image("My Image") .resizable() .aspectRatio(contentMode:…
Wilson Gramer
  • 702
  • 8
  • 23
13
votes
2 answers

How to add Buttons to a iOS 14 Widget

I'm trying to add buttons to a widget having family type ".systemLarge". I want to execute some code without opening the app. Anyone knows how to do that? For example the Shortcuts App Widget includes buttons you can tap to execute a shortcut…
Spriter
  • 611
  • 1
  • 5
  • 12
13
votes
3 answers

Alternative animation for fullscreen cover / modal - iOS 14

Is there a way to use an alternative animation for the new fullscreen modal is iOS 14 in SwiftUI? At present it slides up from the bottom, but I'd like crossdissolve. I've tried a few things but no luck. I'm thinking the new matchedGeometryEffect()…
DogCoffee
  • 19,820
  • 10
  • 87
  • 120
12
votes
1 answer

Flutter: facebook_app_events iOS 14 compliance (setAdvertiserTrackingEnabled)

Reading through the Facebook App Events Documentation and general iOS 14 guidelines, it looks like we need to check for ask users for consent for Advertiser tracking any time information is sent to Facebook. I don't see an API endpoint for the…
beechan
  • 121
  • 3
12
votes
4 answers

White background in table section header in iOS14

This issue appeared after building to iOS14 with xcode12. I have a section header with transparent background, on iOS14 it becomes white with new _UISystemBackgroundView added to the hierarchy.
Husam
  • 8,149
  • 3
  • 38
  • 45
12
votes
1 answer

How can i display only limited photos with PHPickerViewController?

I use Limited Photos Library feature and have selected a few photo but when use PHPickerViewController to select images in the application, PHPickerViewController shows all images in the gallery instead of just a few selected ones before. Is it…
suzu
  • 121
  • 4
12
votes
3 answers

Updating time text label each minute in WidgetKit

Is it possible to create text label in Widget that will show current time and will be updating in real-time? Trying to create clock widget, but widget is updating only 1 time each 5 minutes. Creation of timeline not helped "Keeping a Widget Up To…
Maks
  • 302
  • 1
  • 2
  • 10
12
votes
5 answers

iOS 14 Google Cardboard view is broken

On all apps that I can find that use Cardboard in iOS 14 (iPhone), the VR view is insanely bugged. The camera swings wildly all over the place. Here is a video example: https://www.reddit.com/r/youtube/comments/i1nbs0/ios_14_vr_error/ The official…
AerinC
  • 151
  • 1
  • 1
  • 6
12
votes
3 answers

SwiftUI @State and .sheet() ios13 vs ios14

Hello I am running into a problem here and I do not have a consistent behavior between my .sheet() view when running on ios13 or ios14 I got a view like this : @State private var label: String = "" @State private var sheetDisplayed = false ///Some…
FitzChill
  • 815
  • 8
  • 18
12
votes
2 answers

SwiftUI Word Wrap for multiline text Word Hyphenation Problem

I'm facing the following problem with SwiftUI Text: In the following example SwiftUI breaks the word "Amazement" into "amazeme" on the first line and "nt" on the second. How to avoid it, isn't it a bug? I want the word "amazement" to be written on…
Adelmaer
  • 2,209
  • 3
  • 22
  • 45
12
votes
3 answers

Show UIMenu when single-tapping UIBarButtonItem

in iOS 14, there are new APIs for UIMenu, and it can now be attached to UIBarButtonItem, just like that: This is my code: @IBOutlet weak var addButton: UIBarButtonItem! // The button is from the storyboard. override func viewDidAppear(_ animated:…
אורי orihpt
  • 2,358
  • 2
  • 16
  • 41
12
votes
2 answers

Need help to make iOS 14 Widget show content from from REST api

The original question is at Apple forum but no one can help. https://developer.apple.com/forums/thread/654967?answerId=622833022#622833022 I decided to ask on SO. Problem I'm developing a widget extension that show content from REST api. It show the…
Neo.Mxn0
  • 953
  • 2
  • 8
  • 25