Posts

Post not yet marked as solved
3 Replies
Can you explain what this is "unhandled language exception"? It is obviuos it is an unhandled exception... I am getting the same issue during reveiw, but I cannot duplicate the issue locally. It is really annoying there is not support for these issues during the review process. . How do we suppose to fix these type of issues ???
Post not yet marked as solved
13 Replies
Any updates on In-App subscribtion purchases in Watch OS ?? It is still NOT working...
Post not yet marked as solved
11 Replies
Any uipdate on stand alon watch app subscription pricing ?
Post not yet marked as solved
22 Replies
Here one solution using a modifier and ignoring the button tap. ButtonRefresh below is in a list. Visually the containing list item "clicks", but only the referesh button is actioned.Hope it helpsstruct YastIconButtonStyle: ViewModifier { func body(content: Content) -> some View { content .background(Color.yellow) .mask(Circle()) }}extension View { func ApplyImageIconsButtonStyle(command: @escaping () -> Void) -> some View { self .modifier(YastIconButtonStyle()) .onTapGesture { command() } }}struct ButtonRefresh: View { var body: some View { Button(action: CmdLoadPortolioOnline) { Image("Refresh") .ApplyImageIconsButtonStyle(command: CmdLoadPortolioOnline) }.onTapGesture { // Do nothing } }}