Post

Replies

Boosts

Views

Activity

Reply to Issue with SceneStorage in ViewModifer, but not in View
Just as the message states, it is to be only used within a SwiftUI View where the context of a scene exists.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to XCode 15.3 WidgetKit Preview Problem
Are you using external dependencies like pods, or swift packages that might not have all downloaded? Start with cleaning up all of the warnings as it is reckless to have warnings that eventually turn into errors.
Replies
Boosts
Views
Activity
Mar ’24
Reply to Developer mode on Watch OS missing after phone replacement
Submitted a bug report: FB13689849
Replies
Boosts
Views
Activity
Mar ’24
Reply to SwiftUI Textfield Input Lag with SwiftData Object
@Bindable var setGroup: ExerciseSetGroup - > @State var setGroup: ExerciseSetGroup
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to Is there a convenient way to exclude files based on an OS filter?
File a feature request via the feedback tool
Replies
Boosts
Views
Activity
Mar ’24
Reply to Different CocoaPod files from M chip and Intel chip
Move to swift package manager.
Replies
Boosts
Views
Activity
Mar ’24
Reply to How to uncheck "Connect via network" on physical device in Xcode 15
You can't. Connectivity is a network-first-only model with a fallback to cable if connected. These are signs that the cable is on the way out for environmental reasons.
Replies
Boosts
Views
Activity
Mar ’24
Reply to M2 - Upgrade from Xcode 15.2 to 15.3, can no longer run on simulator
Try moving to Swift Package Manager. If you look carefully, you will see there is also a Rossetta sim for every other sim defined. Try changing 13.2 in the podspec to 17.4 and see what happens.
Replies
Boosts
Views
Activity
Mar ’24
Reply to An error has occurred. Unable to display information about the selected item.
Regenerate because it looks like it has data it shouldn't have based on the message or ask your coworkers what they did. They will have more context on what they did than anyone here.
Replies
Boosts
Views
Activity
Mar ’24
Reply to Just did the mac OS update now won't show my external drives
That's why it's called a release candidate.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to Xcode 15.1 – iOS 16.1 Simulator runtime not available
Upgrading is your best option.
Replies
Boosts
Views
Activity
Mar ’24
Reply to Vision Pro - lets join forces to improve VisionOS platform
This is what you expect with anything new in the version 1.x release chain. Just sit back and wait for the OS and platform APIs to iterate over time to may be Vision OS 10.0
Replies
Boosts
Views
Activity
Mar ’24
Reply to mac pro 5.1 mojave rx 580 crash at sleep
Wrong forums, and you know it.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to SCNNode slows down even with constant velocity set
Well, you need to apply some force to the object to keep it going. Think about it.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to Unexpected behaviour when attempting to decode enum keys from a JSON dictionary
@mikeTheDad All you have to do is change From the non codable type typealias LocalizationsDict = [Language: Localization] To the raw type of the enum and the decoding works. typealias LocalizationsDict = [Language.RawValue: Localization]
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’24