Post

Replies

Boosts

Views

Activity

Reply to watchOS 9.2 breaks the complicationForeground() modifier
@ViewBuilder func complicationLayer(_ layer: Compatibility.ComplicationLayer) -> some View { if #available(watchOS 9.2, *) { switch layer { case .foreground: self case .background: self.complicationForeground() } } else { switch layer { case .foreground: self.complicationForeground() case .background: self } } } It's ugly but it works. I don't want Apple to reverse its semantics again, even if it's wrong. So be it.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’22
Reply to ASC Doesn't generate DSYM file
This issue has been bothering me for weeks. Finally I found dSYM in the Artfact of Xcode Cloud workflow...
Replies
Boosts
Views
Activity
Sep ’22
Reply to Xcode Cloud upload dSYM to Sentry
Same here.
Replies
Boosts
Views
Activity
Sep ’22
Reply to Upgrade for iPhone Mini
Totally agree.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to watchOS 9: ClockKit-based complications occasionally failed to display
@mehulFunnmedia I have not found a reliable solution for now. The problem is too difficult to reproduce. 😫
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to SwiftUI ScrollViewProxy.scrollTo(_:anchor:) always crash in iOS 16 beta 7: NSInternalInconsistencyException
Confirmed still crash in Xcode 14.1 RC + iOS 16.1 RC
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Segmentation fault 11 Crash in [WCSession onqueue_sendMessageData:replyHandler:errorHandler:dictionaryMessage:] on watchOS 9.0/9.1
FB11726102
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Removing title bar on Catalyst doesn't work on Ventura
Same issue here. Thank you all for the information. I also tried various hacks, but none of them worked. It's just too painful, I'll stop fixing it for now and wait for a solution.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to Removing title bar on Catalyst doesn't work on Ventura
Just realized that this problem only appears when "Optimized for Mac" is selected for the catalyst user interface idiom. Selecting "Scaled to Match iPad" has no problem.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to iOS-App-On-Mac app unable to restore purchases or IAP receipt due to file permission issue
Reported: FB11769706
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to SwiftUI preview layout: size that fits does not work
Same here. I found that you have to switch to the static preview mode to get a sizeThatFits layout. In the default dynamic preview mode, the container is always a whole iPhone.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to SwiftUI matchedGeometryEffect not working with NavigationView
It seems to be just one of the many small problems with NavigationView. 😅 Maybe you can try .navigationViewStyle(.stack) or the new NavigationStack. The transition animation in the SwiftUI Preview window sometimes also has bugs. You can try it in the simulator.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to When set live activity dismissalPolicy: .after(endTime), the dynamic island not working
Same here. You can only rely on push notification. (which is not reliable neither...) And I don't know why Apple refuse to reuse the Timeline API in the new ActivityKit...
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to watchOS 9.2 breaks the complicationForeground() modifier
This issue can only be reproduced on the physical watch with watchOS 9.2 at this time. There is currently no simulator available for watchOS 9.2 in Xcode 14.2. Also, It is worth mentioning that the SwiftUI Preview also does not correctly render the replicationForeground() effect. But this should be another bug.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to watchOS 9.2 breaks the complicationForeground() modifier
@ViewBuilder func complicationLayer(_ layer: Compatibility.ComplicationLayer) -> some View { if #available(watchOS 9.2, *) { switch layer { case .foreground: self case .background: self.complicationForeground() } } else { switch layer { case .foreground: self.complicationForeground() case .background: self } } } It's ugly but it works. I don't want Apple to reverse its semantics again, even if it's wrong. So be it.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to SwiftUI ScrollViewProxy.scrollTo(_:anchor:) always crash in iOS 16 beta 7: NSInternalInconsistencyException
Still crash on iOS 16.3 + Xcode 14.2
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jan ’23