Post

Replies

Boosts

Views

Activity

Reply to iOS 18.2 Beta WKWebView Navigation Breaking loadFileURL for Local Files
Same here. Previously worked loadFileURL(_:allowingReadAccessTo:)no longer sufficient to use, since it breaks loadHTMLString(_:, baseURL:) result. Can't find solution to load local images, which are stored under subfolder in .../Documents/resources And I don't really catch what WKScriptMessageHandler role plays here, since I can manually inject absolutePath to htmlString, which doesn't work either.
Feb ’25
Reply to Swift Package Manager not building external dependencies correctly
Ok, so I managed to fix this by adding dependency to my target. Here's the update Package.swift // swift-tools-version: 5.10 // The swift-tools-version declares the minimum version of Swift required to build this package. let package = Package( name: "MyPackage", platforms: [.iOS(.v16), .macCatalyst(.v16), .macOS(.v14)], products: [.library(name: "MyPackage", targets: ["MyPackage"]),], dependencies: [ .package(path: "../external-package") ], targets: [ .target( name: "MyPackage", dependencies: [ 👉❗️ .product(name: "ExternalPackageName", package: "external-package") ], path: "Sources" ), .testTarget(name: "MyPackageTests", dependencies: ["MyPackage"]), ] )
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’24
Reply to Bug? SwiftData + inheritance + optional many-to-one relationship
I'm experiencing this bug still in 26.3
Replies
Boosts
Views
Activity
3d
Reply to Xcode 26 String Catalog generate comment grayed out
ChatGPT account is attached too
Replies
Boosts
Views
Activity
Jun ’25
Reply to iOS 18.2 Beta WKWebView Navigation Breaking loadFileURL for Local Files
Same here. Previously worked loadFileURL(_:allowingReadAccessTo:)no longer sufficient to use, since it breaks loadHTMLString(_:, baseURL:) result. Can't find solution to load local images, which are stored under subfolder in .../Documents/resources And I don't really catch what WKScriptMessageHandler role plays here, since I can manually inject absolutePath to htmlString, which doesn't work either.
Replies
Boosts
Views
Activity
Feb ’25
Reply to App Clip Card not appearing on initial page load
So all the setup was done correctly, however I wasn't injecting meta tags correctly in React using Tailwind CSS framework. It must be done like so: https://nextjs.org/docs/app/api-reference/functions/generate-metadata#other After changes the App Clip Card loads correctly.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Swift Package Manager not building external dependencies correctly
Ok, so I managed to fix this by adding dependency to my target. Here's the update Package.swift // swift-tools-version: 5.10 // The swift-tools-version declares the minimum version of Swift required to build this package. let package = Package( name: "MyPackage", platforms: [.iOS(.v16), .macCatalyst(.v16), .macOS(.v14)], products: [.library(name: "MyPackage", targets: ["MyPackage"]),], dependencies: [ .package(path: "../external-package") ], targets: [ .target( name: "MyPackage", dependencies: [ 👉❗️ .product(name: "ExternalPackageName", package: "external-package") ], path: "Sources" ), .testTarget(name: "MyPackageTests", dependencies: ["MyPackage"]), ] )
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to App Clip Unavailable
Same here, nor the Smart Banner appears on my website, nor does the AppClip tag works: "AppClip unavailable" , it only shows the image.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to Can't update Xcode to 15.1
Same here, running macOS 14.2 on Macbook Pro 14'' 2021
Replies
Boosts
Views
Activity
Dec ’23
Reply to If have a "7 day free trial" in my app - after how long will a sale register on app store connect
Go to Sales and Trends -> Event (under Subscriptions) There you can view how many free trial Activations, Cancellations, Conversions to Standard Price or other events happened.
Replies
Boosts
Views
Activity
Apr ’23