Post

Replies

Boosts

Views

Activity

Reply to arrowEdge of popoverTip not working anymore on iOS 17.1
This issue persists in iOS 17.5 and iOS 18 beta 3. It prevents me from integrating TipKit into my project because the tooltips overlay other buttons and make the UI confusing. Steps to Reproduce Download the TipKit sample project from Apple Open PopoverView and change the tip modifier to .popoverTip(tip, arrowEdge: .top) Run the project and navigate to PopoverView Expected Result The tooltip should appear below the image, with the arrow positioned at the top of the tooltip. Actual Result The tooltip appears above the image, with the arrow positioned at the bottom of the tooltip.
Jul ’24
Reply to Preview crashes consistency in Xcode 16 beta
Most of my Xcode previews are crashing very often on Xcode 16 beta. I receive the following errors: Fatal Error in UVJITAgent.swift: Failed linking pseudodylib <path> during initial JIT link. dlopen(<path>, 0x0002): Library not loaded: /System/Library/Frameworks/_ClockKit_SwiftUI.framework/_ClockKit_SwiftUI LLVMError(description: "Duplicate definition of symbol ...") AppCannotRunOnTargetDestination: This app cannot run on the selected target device. I can get all previews to work by performing an incremental build and resuming the preview. Sometimes, I have to repeat this process multiple times. As soon as I switch to another view, the errors return. I've submitted a feedback report and attached diagnostics for all errors (FB13865079).
Jun ’24
Reply to AppShortcuts are not showing up when using CustomIntentMigratedAppIntent with Xcode 14.1 beta 3.
Thank you, ColtonJ! My AppIntents were no longer visible in the Shortcuts app and this solved my issue. Another tip: If you use SwiftFormat in your project and write code like static var typeDisplayRepresentation: TypeDisplayRepresentation = TypeDisplayRepresentation(name: "Some Name") it will get reformatted to static var typeDisplayRepresentation: TypeDisplayRepresentation = .init(name: "Some Name") which breaks the metadata processor again. Therefore I recommend using the following syntax: static var typeDisplayRepresentation = TypeDisplayRepresentation(name: "Some Name")
Nov ’22
Reply to Corner complication with arching text label
There is another thread on this issue where one user got feedback from an Apple engineer: https://developer.apple.com/forums/thread/707827 So I got an answer from a framework engineer on Twitter and it seems that the curved text in the corner won't be supported in watchOS 9. We're supposed to work around by setting a font like .system(size: 28, weight: .semibold, design: .rounded) to get a similar text size but it won't be curved. The other "issue" with the gradient gauge was a misunderstanding of mine: I thought it's only possible to tint it in combination with a gauge style but we can of course just add a .tint(gradient) modifier This bug/oversight is currently blocking my migration to WidgetKit-based complications since you cannot combine the two frameworks for different slots.
Oct ’22