ios13 Questions

4

Solved

How can I change the map to dark mode from iOS 13? I have opt-out from UserInterfaceStyle so system-wide colors will not apply to me, so I'll do it manually. I've seen this video from apple WWDC201...
Ecclesiastic asked 25/10, 2019 at 19:59

6

Solved

After upgrading Xcode a critical part of my application has stopped working. When my app launches I run a function to check boolean flags and set the correct rootViewController. But the code I h...
Teenateenage asked 24/9, 2019 at 14:36

5

Solved

How does one centre a navigation bar title in SwiftUI? var body: some View { NavigationView { .navigationBarTitle("Todo Lists") } }
Abutilon asked 13/8, 2019 at 22:33

12

Simple put, I was relying on the following code to provide the orientation of the application. This is utilized for several reasons within the application: Per UX specification, the layout of the...
Tigon asked 16/9, 2019 at 23:57

5

Hi I'm making ios app using UniversalLink. Universal Link works fine, but callback method is not called. My AppDelegate.swift is below. import UIKit @UIApplicationMain class AppDelegate: UIResp...
Keratitis asked 3/10, 2019 at 7:56

9

Solved

struct ContentView : View { var body: some View { NavigationView { TabbedView { PasswordGenerator() .tabItemLabel { Image("KeyGlyph") Text("Generator") } PasswordGeneratorSettings() .tab...
Libre asked 25/6, 2019 at 6:37

5

Solved

Method scene(_ scene: UIScene, continue userActivity: NSUserActivity) doesn't get called when the app is launched after the user clicks on a universal link. It works fine when already launched app...
Voiceful asked 4/10, 2019 at 22:43

6

Solved

The new iOS 13 update introduces an optional system-wide. This causes e.g. the StatusBar to have light text, which might become unreadable on a white background. It also breaks the iOS Datetime Pic...
Notch asked 15/10, 2019 at 13:29

6

Solved

I have a SwiftUI app that will have a floating podcast player, similar to the Apple Music player that sits just above the Tab Bar and persists across all tabs and views while the player is running....
Pyrosis asked 29/1, 2020 at 15:3

22

I am working with SwiftUI, and I have some issues with the TabBar. I want to hide the TabBar on a specific subview. Have tried with UITabBar.appearance().isHidden = true It only works on the d...
Bilicki asked 18/10, 2019 at 5:51

7

Solved

Been playing around with SwiftUI and understood the concept of BindableObjects etc so far (at least I hope I do). I bumped into a stupid problem I can't seem to find an answer for: How do you in...
Prepositor asked 20/6, 2019 at 12:25

32

Solved

I'm using Core Data with Cloud Kit, and have therefore to check the iCloud user status during application startup. In case of problems I want to issue a dialog to the user, and I do it using UIAppl...
Crunode asked 21/7, 2019 at 14:48

9

I have a swiftUI animation based on some state: withAnimation(.linear(duration: 0.1)) { self.someState = newState } Is there any callback which is triggered when the above animation completes? If...
Motet asked 3/9, 2019 at 0:20

4

Solved

I am getting the below warning and the app shows a black screen for iOS 13 [SceneConfiguration] Info.plist configuration "(no name)" for UIWindowSceneSessionRoleApplication contained UISceneDele...
Deadfall asked 28/2, 2020 at 4:5

8

Solved

I read through the documentation regarding: https://developer.apple.com/documentation/appkit/supporting_dark_mode_in_your_interface When the user changes the system appearance, the system automa...
Credits asked 29/8, 2019 at 9:2

8

Solved

iOS 13 introduced some changes to the UISegmentedControl including a really nice animation when switching the selected segment. However I'm noticing that it's not displaying the backgroundColor pro...
Justification asked 25/9, 2019 at 20:10

3

There is many answer about dyld_shared_cache_extract_dylibs failure. Notably this link and this other one and this github issue. None of this worked for me. I have the last iOS DeviceSupport insta...
Progestin asked 21/11, 2019 at 9:42

17

Solved

How to create grid of square items (for example like in iOS Photo Library) with SwiftUI? I tried this approach but it doesn't work: var body: some View { List(cellModels) { _ in Color.orange.f...
Belicia asked 5/6, 2019 at 18:43

1

I know the download attribute works but no matter the filetype it just dumps the image/video into the Files.app area that most people don't understand. Is there a way to get iOS Safari to save an i...
Claviform asked 31/1, 2021 at 22:1

4

Solved

Once our app is run on iOS13 then the log is full of wried assertions. Anybody some tips how to remove it? 2019-09-19 08:05:43.528382+0200 Ts-2-cz-test[56066:20590106] [Assert] Current fallback tr...
Morphine asked 19/9, 2019 at 6:31

3

Solved

With the new default card modal presentation in iOS 13, there is a nice feature that is swipe to dismiss. Is it possible to use this feature while presenting a classic .fullscreen modal? I checked...
Salyer asked 5/9, 2019 at 10:42

3

Solved

I'm comparing two UIColor initialised using the new iOS 13 init(dynamicProvider:) https://developer.apple.com/documentation/uikit/uicolor/3238041-init but that's what I get runtime when I compare...
Karmen asked 23/9, 2019 at 15:8

4

Unable to use Googleplaces SDk, No where I'm using "UISearchDisplayController" in my project. So searched in my project which is showing in GooglePlaces I'm no where using "GMSAutocomplete...
Etti asked 30/10, 2019 at 10:53

5

In the info.plist file I configured URL Identifier and URL Scheme successfully. Also I am able to open the app using the custom URL. The problem is when the app launches for the first time, the met...
Cordi asked 21/11, 2019 at 10:50

11

In order to test my in-app purchases with iOS 13 I have to update one of my test devices to iOS 13.1 beta. On iOS 12 and before there was a special Sandbox login in Settings/iTunes & App Store/...
Edema asked 9/9, 2019 at 8:55

© 2022 - 2024 — McMap. All rights reserved.