Post

Replies

Boosts

Views

Activity

Reply to Symbol Not found - VisionKit
.visualLookUp is only available on macOS 14+. .visualLookUp is only available on iOS 17.0+. So when you target iOS 16.0, the symbol is undefined in the runtime of the device running iOS 16, but it will be present if you run the simulator at iOS 17 and higher. https://developer.apple.com/documentation/visionkit/imageanalysisoverlayview/interactiontypes/4161927-visuallookup You might want to look at https://developer.apple.com/documentation/visionkit/imageanalysisinteraction https://developer.apple.com/documentation/visionkit/imageanalysisinteraction/interactiontypes
Topic: Machine Learning & AI SubTopic: General Tags:
Feb ’24
Reply to App getting rejected for Guideline 5.1.1 and am unable to understand why
Do as Apple says and not as the other does. In-app purchases are for enabling features and/or services within an app. If you want to sell tours or real live events to your users, then a website is better suited for that business model.
Replies
Boosts
Views
Activity
Mar ’24
Reply to xcode 14.2: Library not loaded: /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
Upgrade to Xcode 15.2
Replies
Boosts
Views
Activity
Feb ’24
Reply to ios 17.2 Xcode Simulator black screen issue
I find the issue is also present with Rosette enabled for builds and after several launches. Then everything is fine for projects without Rosetta on Apple Silicon.
Replies
Boosts
Views
Activity
Feb ’24
Reply to Symbol Not found - VisionKit
.visualLookUp is only available on macOS 14+. .visualLookUp is only available on iOS 17.0+. So when you target iOS 16.0, the symbol is undefined in the runtime of the device running iOS 16, but it will be present if you run the simulator at iOS 17 and higher. https://developer.apple.com/documentation/visionkit/imageanalysisoverlayview/interactiontypes/4161927-visuallookup You might want to look at https://developer.apple.com/documentation/visionkit/imageanalysisinteraction https://developer.apple.com/documentation/visionkit/imageanalysisinteraction/interactiontypes
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Embedded webview on app crashing
Two potential solutions Learn to code natively on the platform using Objective-C, C, C++ or Swift, where you can access the iOS frameworks directly. Report your problem to the Google developer forum supporting Flutter SDK, as it is not an Apple product.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Possible to run chrome or chromium headless browser on iOS?
Post your question on the respective Google developer forum. Chrome is not an Apple product; hence, there are no Apple APIs to do such.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Is it possible to organize a shared photo library in photos, using albums or folders?
Sorry, no help from here. Post your question in Apple community forums.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to In App Purchases button crashing for reviewer, but not for me
Open Xcode, open project, go to the organizer, select your app and try to download any crash reports that will automatically symbolicate with the source code.
Replies
Boosts
Views
Activity
Feb ’24
Reply to NSPersistentCloudkItContainer and iCloud synchronization speed issues
What does the code implementation look like that is responsible for the cloud sync?
Replies
Boosts
Views
Activity
Jan ’24
Reply to Determine the user name that was used to login to a network server
This might get you in the right direction, the APIs are somewhat similar. https://unix.stackexchange.com/questions/406301/how-to-get-nfs-user-list-and-kill-connection
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to About how to operate CarKeyRemoteControlSession() and vehicleReports() API
First, you must be a vehicle manufacturer or sub-manufacturer with the required hardware environment to program for the respective vehicles. Class CarKeyRemoteControlSession The object that manages communication with the vehicles you manufacture.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to About how to operate CarKeyRemoteControlSession() and vehicleReports() API
..
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to Simulator keeps crashing my computer
Your MacBook needs more resources. Investing in a MacBook Pro with more RAM and storage is best.
Replies
Boosts
Views
Activity
Jan ’24
Reply to CoreData+CloudKit w/ Large Public Database
Cloudkit is meant for small snippets of data. With that said, keep the database somewhere in the cloud accessible via a web service or local to the device outside of the cloudkit storage and only sync the small changes that represent UI state, user selection or preference.
Replies
Boosts
Views
Activity
Jan ’24
Reply to Default value of template T
protocol VT { init() } struct VarType<T: VT> { var item: T = T() }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’24