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 WidgetKit - Widget Preview Screen Not Updating on updating the Placeholder View

I am using XCode 12 beta 2 on iOS 14 Simulator & am trying to update the Widget Preview Screen (i.e. the screen which appears when we try to add a new widget) from the Placeholder View struct PlaceholderView : View { var body: some View { …
Abhishek Bedi
  • 5,205
  • 2
  • 36
  • 62
0
votes
1 answer

WidgetKit won't request a new timeline at the end

When I run the code snippet below, WidgetKit is supposed to request a new timeline at the end of each minute according to the Apple's documentation. Code Block let currentDate = Date() let futureDate = Calendar.current.date(byAdding: .minute,…
amone
  • 3,712
  • 10
  • 36
  • 53
0
votes
1 answer

How do we register a Multiplatform App to receive notifcations in iOS 14?

On iOS the main app is as follows: @main struct MyApp: App { var body: some Scene { WindowGroup { ContentView() } } } AppDelegate is no longer in the Multiplatform app project type, how do we register the app to…
J. Edgell
  • 1,555
  • 3
  • 16
  • 24
0
votes
1 answer

Objective-C lightweight generics won't compile

Having just upgraded to Xcode 12/iOS 14, the Intents framework is trying to compile code like this in various headers: @interface INObjectSection : NSObject But the compiler seems to have no idea that…
Nestor
  • 2,753
  • 2
  • 29
  • 34
0
votes
1 answer

Hide Recording Indicator

Anyone knows how to hide Recording Indicator in ios14? I’m writing a camera app, so is very clear that when the app is in use both camera and microphone are in use!
salvatorep
  • 36
  • 3
0
votes
3 answers

Xcode 12, iOS 14, Pods

After updating the iPhone to ios 14, xcode 11.5 stopped launching projects on the iPhone, I decided to upgrade xcode to version 12 and got a huge number of errors related to Pods for 60 of them ... Basically, everything is related to the fact that…
Eugene
  • 65
  • 1
  • 8
0
votes
1 answer

two different custom transitions in a navigationController

I'm trying to make two different custom transition (one fade and one slide from top) within a navigation controller. The transition works very well the first time but when pop the transitions acting crazy. I guess that navigationController.delegate…
-1
votes
3 answers

How to use focus state only for iOS 15 version on an iOS 14 app?

I have a SwiftUI app that is targeting iOS 14 as well. I want to use the focus state only for the iOS 15 version. I don't mind much about the iOS 14 version. As focusState is only available for iOS 15. @FocusState private var isUsernameFocused: Bool…
dhaval123
  • 107
  • 11
-1
votes
1 answer

iOS 14+ SwiftUI Rendering TextView DataDetector without WebKit

When using SwiftUI with iOS 14, I was unable to find out how to render html markup into actual text. I used SwiftSoup to parse the HTML into a string, but it removed
and it didn't parse it into an NSAttributedString for formatting. Once I…
Eli017
  • 31
  • 7
-1
votes
1 answer

iOS CFMutableDictionaryRef crashes on iOS 15 and newer but still work on iOS14

I wrote two functions in Objective-C to generate a key pair with method SecKeyCreateRandomKey. In one I use the NSDictionary in another CFMutableDictionaryRef. The function where I use NSDictionary work perfect on iOS 14 and 15. The code is…
Aleksey Mukovin
  • 110
  • 1
  • 5
-1
votes
1 answer

iOS 14 green dot is always visible after accessing camera with UIImagePickerController

I know "A green indicator means either the camera or the camera and the microphone are being used by an app on your iPhone." I already dismissed the UIImagePickerController instance. I want to remove the green dot. but i don't know how. Any help…
littlebear333
  • 710
  • 2
  • 6
  • 14
-1
votes
2 answers

Can I submit IOS app created on non-IOS devices (like, using VMware or any other way) or without MacBook?

I need to know if I can submit IOS app which is not built within apple device. I'm using IOS in VMware to create IOS app. But now I heard that, In IOS 14 they are not allowed those app which aren't built within apple device. They are not allowing…
Pex Bht
  • 21
  • 1
-1
votes
1 answer

WKUserScript init Crash on iOS 14: Use of unimplemented initializer init(source:injectionTime:forMainFrameOnly:in:)

Crash while executing this init method in ios 14 Use of unimplemented initializer init(source:injectionTime:forMainFrameOnly:in:) class MyScript: WKUserScript { init(source: String) { super.init(source: source, injectionTime:…
Saqib2235
  • 41
  • 5
-1
votes
1 answer

Create CGImage from Data multiple times results with previous image override

When generating a CGImage one can choose between an initializer using JPEG-encoded data, PNG-encoded data or just data. I'm generating an image from a Data object containing 16 bit grayscale values. The initializer required a CGDataProvider which…
Yonatan Vainer
  • 453
  • 5
  • 15
-1
votes
1 answer

Xcode 12 failed to build cocoa pods - generate umbrella header

When updating to XCode 12, the project stopped working. Not able to build the project. Number of errors occurred stating failed to build cocoa pods generate umbrella header
Ankit Goyal
  • 3,019
  • 1
  • 21
  • 26
1 2 3
75
76