Post

Replies

Boosts

Views

Activity

Reply to simulator IOS 15.5
That usually means that the simulator isn't compatible with the version of Macos you are running. In the end, the simulator is a mac app and it depends on macos to simulate ios. If you uninstall it, that ios version isn't likely to show as available for download.
May ’24
Reply to Store USDZ with SwiftData
I think that storing small amounts of arbitrary data is stored as a blob in the database and large blocks are saved in the file system with the database having a pointer to the file. I would expect the intended way to retrieve the data is using a fetch request rather than trying to access the file yourself.
Topic: Graphics & Games SubTopic: General Tags:
May ’24
Reply to ITMS-90863: Macs with Apple silicon support issue (iCloud library)
For what its worth, I don't have that library at that location on my personal or work apple silicon mac.
Replies
Boosts
Views
Activity
Jun ’24
Reply to Custom dateFormat like "dd-mm-yyyy" doesn't work properly if device follows japanese/buddhist calendar
The format strings are designed for the Gregorian calendar. If this is meant to be shown to the user, you should an appropriate localized format.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Cannot get NSTimer working in another thread
The timer runs on the current thread and you are telling that thread to sleep forever.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Link not open in iphone safari but open in macbook safari
You aren't giving much in the way of details. Is the macbook on the same network as the phone? What scheme is the url using? Is the phone using the same dns server?
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to How can Charts display sales data for a full month and support monthly paging?
What about creating a view that shows data for a month. Create an outer data model with a list of months to show that drives a scrollable list.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to simulator IOS 15.5
That usually means that the simulator isn't compatible with the version of Macos you are running. In the end, the simulator is a mac app and it depends on macos to simulate ios. If you uninstall it, that ios version isn't likely to show as available for download.
Replies
Boosts
Views
Activity
May ’24
Reply to protocol in swiftUI
Apple's actual implementation code isn't going to show in xcode. The only thing that will be visible is the API.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Scheduling Local Notifications with repeat interval
What I would do is trigger an interval timer using the date/time timer.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Store USDZ with SwiftData
I think that storing small amounts of arbitrary data is stored as a blob in the database and large blocks are saved in the file system with the database having a pointer to the file. I would expect the intended way to retrieve the data is using a fetch request rather than trying to access the file yourself.
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to lass AKAlertImageURLProvider and AKBiometricRatchetUtility are implemented in both AuthKitUI and AuthKit
Ultimately that is an Apple bug. You won't be able to fix it. If your app is otherwise working, I would suggest ignoring it.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Safari extensions not working correctly on IOS 17.4.1 and 17.5 beta
It is worth remembering that only you and Apple personnel can see details of your feedback tickets. For others, we get a feedback not found page.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to Any Way to Upgrade Xcode Cloud Subscription on Desktop?
There seems to be a Macos version in the mac app store. You could try that.
Replies
Boosts
Views
Activity
May ’24
Reply to Persisting Color from ColorPicker
You could create a class that has the component elements of the color as properties and have convenience propertie(s) that return a color using the stored properties.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to IOS 17+ devices not connecting to Xcode 15.3/Xcode 15.4 Beta
Are you using a company mac that includes a firewall or you are using a vpn? Starting with iOS 17 Apple switched over to only using a network connection for communicating with the phone. This can be over wifi or a usb cable.
Replies
Boosts
Views
Activity
May ’24
Reply to When using index in a ForEach loop in SwiftUI, you might encounter an "index out of range" error.
I believe you need to use \.self as the id in the for each loop. That way it will check for changes in the loop range.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Apr ’24