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.
Post
Replies
Boosts
Views
Activity
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.
Same, just builds and not runs the playground... this was perfect timing as I was using a playground for a tech assessment lol
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 }
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?