Questions tagged [uti]

A 'Uniform Type Identifier' (UTI) is a string value used to identify abstract and specific types of item. It uses a reverse-DNS syntax, and is used extensively by Apple for determining types of data files. UTIs exist in an inheritance-based structure, allowing data types to be organised hierarchically. Apple maintains a list of public UTIs, and allows the creation of private, or 'third-party' UTIs.

A 'Uniform Type Identifier' (UTI) is a string value used to identify abstract and specific types of item. It uses a reverse-DNS syntax, and is used extensively by Apple for determining types of data files.

UTIs exist in an inheritance-based structure, allowing data types to be organised hierarchically, and referenced as a more abstract type (e.g. public.image) or more specifically (e.g. public.jpeg).

Apple maintains a list of public UTIs, and allows the creation of private, or 'third-party' UTIs.

217 questions
0
votes
1 answer

iOS and OSX Document Packages cross platform

I have a iOS and OSX application which is document based and i am saving complex folder hierarchy inside the document so i change my UTI type to document package. But the problem is that according to apple Document Package is just a folder. If i…
shahid610169
  • 370
  • 2
  • 11
0
votes
1 answer

Cordova / PhoneGap : open file from other app

I recently started working with PhoneGap based on cordova to build an app for ios, android and windows phones. For now I'm testing it on iphone, which is the main platform for this app and this question as well. To make it easier, lets call my…
YannickHelmut
  • 555
  • 1
  • 7
  • 20
0
votes
0 answers

What is the uniform type identifiers for Ada/Fortran source files?

Does anyone know the Uniform Type Identifiers (UTIs) for Ada/Fortran source files? I can't find anything about it on the Internet.
Adrian Hoe
  • 2,081
  • 2
  • 12
  • 12
0
votes
1 answer

Open p12 files on ios device

I have this requirement to download .p12 file(certificate) from a vendor and make it available on my app for the user to install it on to his device. Now If I attach a .p12 file to email and when the recipient clicks on the file on iphone it will…
Amar
  • 1
  • 1
  • 2
0
votes
2 answers

The curious case of Plain text files with non .txt extension seen with Quicklook

While answering this question, which involved writing a plain text string out to file with a non standard extension. In this case .meta but it could be anything. I noticed that when I used the Applescript code to write the file out.: set meta_text…
markhunte
  • 6,805
  • 2
  • 25
  • 44
0
votes
1 answer

Is there better documentation on Apples UTI system?

I have a Cocoa document-based application that works fine. However, when I create a UTI for the document and export it, my application can neither read, write or create its own files (or any others). It has only a menu. No logs, nothing. Is the…
dcsalmon
  • 61
  • 5
0
votes
1 answer

Custom UTI registration problems

I am attempting to set up two custom UTIs for my app. I think I have everything set up right (see the info.plist screenshot below). I have a .npdeck file in my email but it doesn't show my app as an option when I try to open it. What did I forget to…
user3925713
  • 509
  • 1
  • 4
  • 10
0
votes
1 answer

UTIs for the gallery App share function

I am implementing Foto/video/others import in my App. Using the UTIs public.image, public.movie, com.adobe.pdf, etc works fine on a lot of Apps, but apple's gallery displays only Mail,Facebook,twitter and youtube in the Share function. How to get my…
junghans
  • 141
  • 1
  • 9
0
votes
2 answers

Testing if an application can open a specific type?

On Mac OS X, how can I tell if a given application opens a specific type? I have two UTIs that I'm interested in: public.text and public.image and I have a list of applications. I want to filter the list by those two types so I have a list of text…
Michael Bishop
  • 4,240
  • 3
  • 37
  • 41
0
votes
1 answer

Save document using any extension

I'm making a simple plain-text editor in Xcode. Whenever I try to save a document in specific extensions I'll get this error: I get this alert for certain extensions only (.scala, .jade, ...). I have no problem saving a file using most extensions,…
Kevin Chavez
  • 949
  • 1
  • 11
  • 27
0
votes
1 answer

Open in... for custom file type works in iOS 5, 6 & 7 but not iOS 4

I have an app that declares a custom file type (which is just some XML) and when iOS encounters this file on iOS 5, 6 & 7, it knows what to do with it - my app fires up and the file imports just fine. However on iOS 4.3.3, the custom file type just…
Andrew Ebling
  • 10,175
  • 10
  • 58
  • 75
0
votes
2 answers

Objective-C: enable "Open in..." on special condition

I have a doubt, is it possible to enable the "Open in" only for a particular condition? Let me explain... I am creating an application that will allow only some users to open in my application some files. For a particular user, I want that tapping…
Corey1986
  • 73
  • 1
  • 6
0
votes
1 answer

My app won't open from the "open in..." menu

I am trying to design an app that will open a custom UTI. I have changed the info.plist, and when I click on the file my app shows up in the "open in..." menu, but when I click on it nothing happens. I have tried the same thing using a .pdf file…
daven3t
  • 29
  • 6
0
votes
1 answer

Handle every possible UTI in an OS X application

How do I make an OS X app respond to any possible document UTI as an editor? That is, it should be capable of handling any file dragged to its Dock icon.
0
votes
1 answer

Custom sqlite UTI not working

I'm trying to get my app to import emailed sqlite files, so I've created the document type and a custom UTI in my info.plist. However, when I receive an emailed sqlite file the option to open in my app doesn't appear: Here's the document Type…
Neil MCCABE
  • 67
  • 1
  • 10
1 2 3
14
15