Post

Replies

Boosts

Views

Activity

Reply to Xcode Cloud: Could not resolve package dependancies.
I was confused about the location of the file and as to its purpose, as I thought It had something to do with the external swift package I use. This file is located inside the project file container and then inside the workspace file container. The gitignore file that I'm using was preventing this file to be added to the repo, I had to comment out a bunch of files related to the project and workspace before it got added to the repo. Once I did, the workflow built just fine. Thanks !
Jan ’22
Reply to Auto-generated Intents code contains thousands of warnings in Xcode 13 beta
I can confirm this is still happening for me too in Xcode 13.1 RC. The duplication seems to be with the SWIFT_AVAILABILTY function. My Siri extensions have a deployment target of 12.3, but in the duplication method I can see the availability setting to iOS 15. - (void)handleCreateDailyTask:(OP1CreateDailyTaskIntent * _Nonnull)intent completion:(void (^ _Nonnull)(OP1CreateDailyTaskIntentResponse * _Nonnull))completion; - (void)handleCreateDailyTask:(OP1CreateDailyTaskIntent * _Nonnull)intent completion:(void (^ _Nonnull)(OP1CreateDailyTaskIntentResponse * _Nonnull))completionHandler SWIFT_AVAILABILITY(watchos,introduced=8.0) SWIFT_AVAILABILITY(macos,introduced=12.0) SWIFT_AVAILABILITY(ios,introduced=15.0);
Oct ’21
Reply to Remove padding on NSTableView / Big Sur with style = .fullWidth
I make a mistake and set as answered my reply. The Correct answer is .plain but with a few caveats:  I tried the plain style as suggested but it looked exactly the same as the fullwidth. I also tried setting self.tableView.intercellSpacing = CGSizeMake(0, 0) but also it didn't work. But finally this is what worked: Set the style to automatic in interface builder Set the style to plain in view did load. I tried other combinations like 1.plain and 2.plain and it didn't work.
Nov ’20