Reputation: 447
Mac OS Catalina now supports iPhone/iPad sync via the Finder on the Mac. Additionally, you can copy files to and from iOS application via the Finder. This is a very nice feature.
Unfortunately, my iOS application is not appearing in the Finder Files tab.
Do I need to package my app in XCode with a special capability to enable this feature? Here is a shot of the Finder window on my Mac. My app is not in the list.
Upvotes: 4
Views: 1361
Reputation: 12254
You may need to set the UIFileSharingEnabled
(Application Supports iTunes file sharing
) key in your app's Info.plist
file.
Upvotes: 8