Post

Replies

Boosts

Views

Activity

Reply to iOS 26 Beta 1 : Banking and Government apps crashing
This is very common and more or less happens every year with the new OS betas. Best guess is they lock the system version to prevent tampering. Not likely to be something on Apple's side. The developers need to update their apps. In my experience it hasn't been an issue for banking apps to do that. After all they have a couple months to do that. I, like Apple, recommend not installing the beta on your primary device due to issues like these.
Jun ’25
Reply to UIRefresh not working for my project?
Structs are not a thing in Objective-C hence why you cannot add @objc to your function. The "real" solution is to use a Coordinator class to handle this (see makeCoordinator in the documentation. Two other alternatives to consider: Create a UIView with the WKWebView and selector inside, or Subclass WKWebView and add both your refresh control and selector inside The reason for your troubles is due to your SwiftUI "view" not really being a view, but a representation of what will become your view. The actual view that is rendered on screen may be a different instance. This is where the Coordinator comes in because it it persisted throughout your "view's" lifetime and passed between instances.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’24
Reply to xcode16 beta not support iAd
iAds is entirely deprecated. To quote the documentation: After February 7, 2023, all requests made to the Apple Search Ads iAd Attribution API will return with a value of "iad-attribution" = false, or errors. See requestAttributionDetails(_:). Use the AdServices framework for current attribution integration with the Apple Search Ads Campaign Management API for devices using iOS 14.3 and later. Attribution isn’t available for downloads and redownloads from devices using iOS 14.2 or earlier.
Topic: App & System Services SubTopic: General Tags:
Jul ’24
Reply to iOS 26 Beta 1 : Banking and Government apps crashing
This is very common and more or less happens every year with the new OS betas. Best guess is they lock the system version to prevent tampering. Not likely to be something on Apple's side. The developers need to update their apps. In my experience it hasn't been an issue for banking apps to do that. After all they have a couple months to do that. I, like Apple, recommend not installing the beta on your primary device due to issues like these.
Replies
Boosts
Views
Activity
Jun ’25
Reply to List Closure not displaying retrieved data in Simulator UI
You should receive a runtime warning about updating your data when you do this: DispatchQueue.main.async { self.extractedContent = extractedData } Try with this instead Task { @MainActor in self.extractedContent = extractedData }
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to UIRefresh not working for my project?
Structs are not a thing in Objective-C hence why you cannot add @objc to your function. The "real" solution is to use a Coordinator class to handle this (see makeCoordinator in the documentation. Two other alternatives to consider: Create a UIView with the WKWebView and selector inside, or Subclass WKWebView and add both your refresh control and selector inside The reason for your troubles is due to your SwiftUI "view" not really being a view, but a representation of what will become your view. The actual view that is rendered on screen may be a different instance. This is where the Coordinator comes in because it it persisted throughout your "view's" lifetime and passed between instances.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Create code at runtime on iOS: possible any more?
As far as I know it is not allowed. Which version had this working?
Replies
Boosts
Views
Activity
Jul ’24
Reply to xcode16 beta not support iAd
iAds is entirely deprecated. To quote the documentation: After February 7, 2023, all requests made to the Apple Search Ads iAd Attribution API will return with a value of "iad-attribution" = false, or errors. See requestAttributionDetails(_:). Use the AdServices framework for current attribution integration with the Apple Search Ads Campaign Management API for devices using iOS 14.3 and later. Attribution isn’t available for downloads and redownloads from devices using iOS 14.2 or earlier.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to GPS problem with non moving iphone. Does Apple consider us users as totally infantile?
What activity type is used? The location manager will only update the location when a significant change is detected. This is intended behaviour to save battery life and depends on the activity type set.
Replies
Boosts
Views
Activity
Jul ’24