While selecting a framework rather than the executable as the active scheme,
SwiftUI preview cannot use: Updating took more than 5 seconds.
However, while selecting the main app target, it can work perfectly.
Repro steps:
git clone https://github.com/imWildCat/NonExecutableTargetCannotUseSwiftUIPreviewDemo
cd NonExecutableTargetCannotUseSwiftUIPreviewDemo
xed NonExecutableTargetCannotUseSwiftUIPreviewDemo.xcworkspace
Select the “SharedUI” target as the active scheme
Open the WebImage.swift source file
Run the SwiftUI preview
Please note that, if you use the main app target (executable rather than the frame), it can be previewed.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
In WWDC21, we saw the possibility to build and distribute SwiftUI apps on iPad.
I wonder how to find it?
Topic:
Developer Tools & Services
SubTopic:
Swift Playground
Tags:
Swift Playground
Playground Support
Hello, since WebKit has fully supported security keys for MFA, could we add the capability for 2FA to Apple ID?
It would make it easier for us to log into our accounts.
And of course, it can save a lot for Apple because less SMS messages need to be sent.
I'm building a Catalyst macOS app but got this bug.
Basically, I cannot go back to the top level list while tapping the back button in the side bar. The cell row got automatically selected while going back.
The source code of this kind of split view controller looks like:
swift
class RootSplitVC: UISplitViewController {
override func viewDidLoad() {
super.viewDidLoad()
let viewController = SideBarListViewController()
primaryBackgroundStyle = .sidebar
preferredDisplayMode = .oneBesideSecondary
let listNavigationVC = UINavigationController(rootViewController: viewController)
viewControllers = [
listNavigationVC, // could only be reproduced on Big Sur with Optimized for Mac
DetailViewController(), // this does not matter
]
Full source code: https://github.com/imWildCat/CatalystTableViewAutoSelectedOnPopDemo
I am building a Catalyst app with "Optimize Interface for Mac".
If a use mainSplitVC.primaryBackgroundStyle = .sidebar and add animations for table view, it leads to bad animation.
You can see the video here: imgur.com/a/1Kn4RVA
(Don't know why I cannot attach and video or image here)
This should be a bug for Catalyst. Also filed a bug report: