Post

Replies

Boosts

Views

Activity

Reply to [iOS 26] iOS App Does Not Receive Deep Link from Widget When Using widgetAccentedRenderingMode on Image
Funkybit found a workaround for this issue https://stackoverflow.com/a/79794250/2035054 Image(..) .widgetAccentedRenderingMode(.desaturated) .overlay { Link(destination: linkUrl) { Rectangle() .fill(.clear) } } And based on this idea: struct AccentedLink<Content: View>: View { let destination: URL var content: Content var body: some View { content.overlay { Link(destination: destination) { Rectangle() .fill(.clear) } } } init(destination: URL, @ViewBuilder content: () -> Content) { self.destination = destination self.content = content() } } And then instead of Link we can use AccentedLink: AccentedLink(destination: URL(string: "myapp://image")!) { Image(uiImage: image) .resizable() .widgetAccentedRenderingMode(.accentedDesaturated) .scaledToFill() .clipped() }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’25
Reply to Ad Hoc .ipa for iOS 12.5.8
Started to crash also on AppStore builds
Topic: Business & Education SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Ad Hoc .ipa for iOS 12.5.8
Same issue, add hoc build compiled with Xcode 26 cannot be run on iOS 12. No crash report only logs. Launch screen is shown for a second and in a moment app is closed
Topic: Business & Education SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’26
Reply to [iOS 26] iOS App Does Not Receive Deep Link from Widget When Using widgetAccentedRenderingMode on Image
Funkybit found a workaround for this issue https://stackoverflow.com/a/79794250/2035054 Image(..) .widgetAccentedRenderingMode(.desaturated) .overlay { Link(destination: linkUrl) { Rectangle() .fill(.clear) } } And based on this idea: struct AccentedLink<Content: View>: View { let destination: URL var content: Content var body: some View { content.overlay { Link(destination: destination) { Rectangle() .fill(.clear) } } } init(destination: URL, @ViewBuilder content: () -> Content) { self.destination = destination self.content = content() } } And then instead of Link we can use AccentedLink: AccentedLink(destination: URL(string: "myapp://image")!) { Image(uiImage: image) .resizable() .widgetAccentedRenderingMode(.accentedDesaturated) .scaledToFill() .clipped() }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’25
Reply to iOS 26 web page with script is terminated on custom scheme WKURLSchemeHandler
Fixed in iOS 26.0 beta 5
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to iOS 26 web page with script is terminated on custom scheme WKURLSchemeHandler
According to WebKit team this issue is already fixed, but not shipped yet https://bugs.webkit.org/show_bug.cgi?id=296698
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to AppIntens used to create Button on Widget doesn't work when main app is running
Hello @Hung23, Could you find a solution?
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Xcode 13 - SPM InvalidManifestFormat
Had the same issue. Removing all caches and temporary files resolved issue. clear: /Users/simonmcloughlin/Library/Developer/Xcode/DerivedData and probably this /var/folders/z5/lvlxhdt138l_7sb148yl_tqc0000gn/T/TemporaryFile.xBESmT.swift
Replies
Boosts
Views
Activity
Jun ’22