Posts

Post not yet marked as solved
2 Replies
Did you ever find a solution for this? I agree, it's very annoying!
Post marked as solved
6 Replies
Is there a way to impliment this universally say from the appdelegate so as not to copy the code to every viewcontroller class? I have set up a class and method from ViewDidLoad, but even with that I'll still have to change every view controller.Thanks,
Post not yet marked as solved
1 Replies
Steve, any luck with this? I have several apps that I'm trying to do the same. I had luck with the first three, being able to make them the same name as the corresponding iOS apps. Then for no apparent reason I started getting this message when trying to create the corresponding Mac app on App Store Connect --The app name you entered is already being used for another app in your account. If you would like to use the name for this app you will need to submit an update to your other app to change the name, or remove it from App Store Connect.You can see my post here --https://forums.developer.apple.com/message/411584#411584I've contacted Apple but have not received a reply yet.Bob
Post not yet marked as solved
94 Replies
Apparently there isn't a UTI for a file of type text - .txt
Post not yet marked as solved
94 Replies
For zip files: com.pkware.zip-archiveFor gpx file: com.apple.dt.document.gpx- still doesn't work. (no file icon either)
Post not yet marked as solved
94 Replies
Works perfect. Thanks for that elegant solution.UTI for a .plist file:com.apple.property-list
Post not yet marked as solved
94 Replies
I replaced the types that were there.It would be easiest to show an image but since images aren't allowed here, this is the text from the .plist file in the app:The UITypeTage is in the UTExportedTypeDeclarations. The extension to the email data file is "visionPF". This is added to the file name in the app when creating the email attachment.<key>CFBundleDocumentTypes</key><array><dict><key>CFBundleTypeIconFiles</key><array><string> blah blah blah path to icon image </string><string>VisionEmailIcon.png</string></array><key>CFBundleTypeName</key><string>VisionFliteSettings File</string><key>CFBundleTypeRole</key><string>Editor</string><key>LSHandlerRank</key><string>Owner</string><key>LSItemContentTypes</key><array><string>Damian-s.${PRODUCT_NAME:rfc1034identifier}</string></array></dict></array><key>UTExportedTypeDeclarations</key><array><dict><key>UTTypeConformsTo</key><array><string>public.data</string></array><key>UTTypeDescription</key><string>VisionFliteSettings File</string><key>UTTypeIconFiles</key><array><string>VisionEmailIcon.png</string></array><key>UTTypeIdentifier</key><string>Damian-s.${PRODUCT_NAME:rfc1034identifier}</string><key>UTTypeTagSpecification</key><dict><key>public.filename-extension</key><array><string>visionPF</string></array></dict></dict></array>
Post not yet marked as solved
94 Replies
This is how I got it to work for me. For the file type I just made an abitrary extension to the file I was saving as an email attachment: filename.anyuniqueextensionUnder Document Types I left the default value of "Damian-s.${PRODUCT_NAME:rfc1034identifier}"Then under "UTTypeTagSpecification" change Item 0 to "anyuniqueextension"Make sure in your app that you read and write the file extension with "anyuniqueextension" All of my file types are .plist.
Post not yet marked as solved
94 Replies
All of my export files are .plist. I changed the "Types" to public.plist and "Conforms To" property to public.text but this still doesn't work for me.I had also upgraded to 13.2 but then had to downgrade to 13.1.2 as Xcode would no longer load files onto my device giving me the message that I needed to upgrade to the latest version of Xcode.
Post not yet marked as solved
94 Replies
iPhone Beta13.2 - nope.
Post not yet marked as solved
94 Replies
iOS 13.1.2 still no joy.
Post not yet marked as solved
94 Replies
That didn't work for me. I already had it set to false.
Post not yet marked as solved
94 Replies
No joy with 13.1.1
Post not yet marked as solved
11 Replies
I'm looking for just the opposite.... I don't want a splitview on the ipad when using NavigationView.For example in this very simple view...struct ContentView : View { var body: some View { NavigationView { VStack { Text("Hello World") }.navigationBarTitle(Text("Nav Title")) } }}How do just get a simple view on the iPad?Thanks!