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
5
Solved
How does one centre a navigation bar title in SwiftUI?
var body: some View {
NavigationView {
.navigationBarTitle("Todo Lists")
}
}
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...
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...
9
Solved
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....
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...
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...
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...
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...
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...
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...
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...
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...
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...
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
1 Next >
© 2022 - 2024 — McMap. All rights reserved.