Post

Replies

Boosts

Views

Activity

Mac Catalyst: Horizontal Mouse scroll with click drag
Preparing an iPad App for native MacOS experience using Mac Catalyst (and AppKit when needed) and using SwiftUI. We observe that Horizontal Scroll is tricky using a Mouse! Most users have the habit of click+drag to scroll horizontally. This does not seem to be default behavior on ScrollView. Strange: Same App when compiled on "Mac (Designed for iPad)" [aka Silicon only] scrolls horizontally with click drag. But not if compiled with Mac Catalyst. Question: How can we enable general click-drag for horizontal scrolling using SwiftUI on Mac Catalyst? I wouldn't mind using specific AppKit framework if needed. Thanks in advance.
0
0
494
Mar ’24
Xcode 14.3 missing compiler flag `-requirement-machine-inferred-signatures`
Xcode 14.0 introduced a work-around for a problem introduced in Swift 5.7 by setting the OTHER_SWIFT_FLAGS build option in Xcode to -Xfrontend -warn-redundant-requirements. (92092635) The compiler crash and discussions are on the Swift GitHub Issues and pending resolution since. The above workaround/flag is no longer available when upgrading to Xcode 14.3 (14.2 is fine) and projects using that flag simply fail. Any hints?
0
0
855
Mar ’23
Xcode 13.3 Apple Watch app targets ((null)) CFBundleShortVersionString
Since updating to Xcode 13.3 (13E113), out WatchKit target fails to build in the ValidateEmbeddedBinary step with the error message: “error: The value of CFBundleShortVersionString in your WatchKit app’s Info.plist (X.Y.Z) does not match the value in your companion app’s Info.plist ((null)). These values are required to match.” All info.plists look perfectly fine! This is only happening since 13.3. The Release Note of 13.3 mentions this bug as fixed: https://developer.apple.com/documentation/xcode-release-notes/xcode-13_3-release-notes 🤷🏻‍♂️ Any one has come across this?!
1
0
1.8k
Mar ’22
'kAudioOutputUnitProperty_OSWorkgroup' is unavailable in Swift
When trying to access a kAudioOutputUnitProperty_OSWorkgroup the compiler errors by indicating: 'kAudioOutputUnitPropertyOSWorkgroup' is unavailable in Swift: Swift is not supported for use with audio realtime threads This makes total sense! But I'm just fetching a property here... . I am not_ in real-time thread! In the world of Mix-N-Match (between C, ObjC++ and Swift) we should be able to fetch a property like this when we're not in a critical block. Or am I missing something here?!
0
0
514
Oct ’20
PKToolPicker in SwiftUI
I am trying to use PKToolPicker (from PencilKit) without a PKCanvasView by adopting PKToolPickerObserver in my own class. I am wondering how to deal with the FirstResponder required by PKToolPicker visibility set from a SwiftUI App when the view containing the PKToolPicker is a UIViewRepresentable embedded in a SwiftUI View that has control of gestures. Thanks in advance, Arshia
0
0
765
Jul ’20
Audio Workgroup Availability
Just saw the Audio Workgroup WWDC20 video. Thanks for bringing this up as it reduces uncertainty for most real-time audio Apps. I am wondering about the availability of Workgroups. The speaker mentions Fall 2020. Is this already part of iOS 14? Is this only iOS 14+ feature or is there backward compatibility? thanks in advance, Arshia Cont
2
0
876
Jun ’20