Post

Replies

Boosts

Views

Activity

Comment on How can I fix action button after update Xcode12?
I am adding uibuttons to content view and I have a separate function that is called in the initializer and that subsequently called debugPrint("contentView.isUserInteractionEnabled = \(contentView.isUserInteractionEnabled)") contentView.isUserInteractionEnabled = true which did not help anything, the taps are still going through to the TableView's didSelectRow: function. Any new info on this?
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’21
Comment on Xcode 26 + iOS 26 debugging is extremely slow
They pushed an Xcode update that fixes this now. But Debugger lagging is still an issue it seems, at least when I use a physical device.
Replies
Boosts
Views
Activity
Nov ’25
Comment on Xcode 26 + iOS 26 debugging is extremely slow
Yes I am also seeing this
Replies
Boosts
Views
Activity
Nov ’25
Comment on CFBundleShortVersionString of an app extension must match that of its containing parent app
I get the same error as houmie: error: The CFBundleVersion of an app extension (null) must match that of its containing parent app ('1.0.72'). I deleted these build settings from each target and setting them at the project level.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Comment on "The archive does not contain any `PrivacyInfo.xcprivacy` files." error occurred when I tapped "Generate Privacy Report" button on Xcode Organizer.
If you're referring to if this applies to app's rather than an SDK, yes. You do want to add a privacy manifest to your app, and make sure it is added to the project's target membership.
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’24
Comment on No output on Xcode playground
Same, just builds and not runs the playground... this was perfect timing as I was using a playground for a tech assessment lol
Replies
Boosts
Views
Activity
Oct ’22
Comment on How can I fix action button after update Xcode12?
I fixed this issue by changing my constraints from using self(UITableViewCell) to using the self.contentView of the cell within the constraints. i.e. constrain(self.contentView, textView) { $1.left == $0.left }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’21
Comment on How can I fix action button after update Xcode12?
I am adding uibuttons to content view and I have a separate function that is called in the initializer and that subsequently called debugPrint("contentView.isUserInteractionEnabled = \(contentView.isUserInteractionEnabled)") contentView.isUserInteractionEnabled = true which did not help anything, the taps are still going through to the TableView's didSelectRow: function. Any new info on this?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’21