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
0
votes
1 answer

iOS 14 Beta - CloudKit - coredata Share records in Public Database

Has anyone been able to get the iOS 14 Beta to work and save/share records using the Public Database? I have yet to get this to work with Public. Using their code, I can create new records, and see them in the CloudKit Dashboard, but I only see the…
George
  • 514
  • 1
  • 8
  • 26
0
votes
2 answers

Add an iOS 14 widget in project with compatibility with old iOS

I want to add an iOS 14 widget in my existing project. But I get compile errors is only available in iOS 14.0 or newer. My widget target deployment target is set to iOS 14. Main app and the whole project deployment target is lower – 12.2. The…
Valentin Shamardin
  • 3,569
  • 4
  • 34
  • 51
0
votes
1 answer

How to update iPhone OS to the specific iOS 14 beta version?

I have the iPhone 11 device which having the iOS 13.6 installed on it. I want to update it to the iOS 14 with beta 4, not with the latest version. Currently, when I try to update to iOS 14 its gives option for beta 7 and not for the previous beta…
yo2bh
  • 1,356
  • 1
  • 14
  • 26
0
votes
1 answer

How to change WindowGroup view from onContinueUserActivity?

I have an app that deep links, so first I have a loading or home view rendered: @main struct AppMain: App { var body: some Scene { WindowGroup { LoadingView() …
TruMan1
  • 33,665
  • 59
  • 184
  • 335
0
votes
1 answer

IDFA and IDFV on iOS still building with XCode 11

My app is using IDFV (id for vendor) and a third party analytics framework is using IDFA (id for advertising). I'm not planning to upgrade my app using XCode 12 right now, but in the next few months. What will happen for both identifiers if an user…
laucel
  • 509
  • 1
  • 5
  • 17
0
votes
1 answer

StoreKit Testing In-App Purchases Xcode 12 beta & iOS 13 or below

https://developer.apple.com/documentation/xcode/setting_up_storekit_testing_in_xcode Does anyone have configured testing purchases locally with .storekit files with Xcode 12? Fetching the products works fine with iOS 14 but with lower iOS versions…
0
votes
1 answer

Type metadata completion function for Crash | Crash when accessing a class that has some unavailable components

I have a crash when trying to use a class that contains iOS 14 only elements on iOS 12. The class looks like this (redacted some irrelevant stuff) public class AssetFuture { public enum AssetRepresentation { case asset(asset: PHAsset) …
Antzi
  • 12,831
  • 7
  • 48
  • 74
0
votes
0 answers

Shall iOS14 and UUID be going away?

Just wondering if UUID() is going away in iOS14? It’s just that we use it to serve "now playing" songs information to each user. We provide different playlist to every listener.
RussellHarrower
  • 6,470
  • 21
  • 102
  • 204
0
votes
1 answer

How to verifiy Install Validation Postback SKAdnetwork using c#?

Following the documentation it's required to accomplish this: https://developer.apple.com/documentation/storekit/skadnetwork/verifying_an_install_validation_postback Verify Apple’s signed value from the attribution-signature parameter against the…
Riccardo
  • 180
  • 1
  • 12
0
votes
1 answer

CarPlay: Customize "Now playing" screen

In the carplay app is only one page, with a list of radio stations. If you tap one, the "now playing" screen shows up: In the "Now playing" screen I want to change the button text of the back button (upper left), and the text of the App Name (upper…
Suplanus
  • 1,523
  • 16
  • 30
0
votes
1 answer

How do i filter core data items by date?

I am trying to display data saved to Core Data on a specific date which is selected by the user via a DatePicker. The data is saved as below with .date: func saveBreakfast() { let newBreakfastItem = BreakfastItem(context:…
Noonan _12
  • 15
  • 4
0
votes
1 answer

Can't run the ActionAndVision sample on iPhone 11 pro

Trying to run the demo project for wwc20-10099 ActionAndVision in a iPhone 11 Pro/iPhone Pro using the supplied sample.mov, or real board. The entire time the app has the "Locating board" overlay instead of finding the board before the bean bags…
0
votes
1 answer

Stretchy Header in UICollectionViewCompositionalLayout in ios 14?

How can I override layoutAttributesForElements in UICollectionViewCompositionalLayout ? func createCompositionalLayout() -> UICollectionViewLayout { let layout = UICollectionViewCompositionalLayout { sectionIndex, layoutEnvironment in …
0
votes
1 answer

How to correctly handle @EnvironmentObject within secondary Class

When using @EnvironmentObject, can you have an @EnvironmentObject inside of another class? I have a setup (MeetingStats) class and then a processing class(Meeting). The processing class and the setup classes are both displayed via different tabs in…
Michael Rowe
  • 870
  • 2
  • 11
  • 27
0
votes
0 answers

UISwitch behavior changed in IOS 14 XCode Beta 4

Has anyone noticed with the changes added to UISwitch in Beta 4, that if you set a switches tag, for some reason it doesn't respect it? I add a switch programmatically to the accessory view of a TableView cell and once the cell is selected I access…
Bookworm
  • 1
  • 2