Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
275 views

Can you dynamically assign CFBundleDocumentTypes to your Cocoa application?

Can you dynamically assign CFBundleDocumentTypes to your Cocoa application? Meaning during run time can I assign more extensions for my app to handle. Currently I set some extensions for my app to ...
2
votes
1answer
89 views

Why is my iOS app not showing up in other apps' “Open in” dialog?

I am trying to implement the registering process that allows my iOS app to show up in the "Open in" list of other applications (as described in Apple's Document Interaction Programming Topics). I want ...
2
votes
0answers
50 views

How to find multiple apps with same bundle identifier?

Does anyone know of a good way to find (in the filesystem) every app with a given bundle identifier? NSWorkspace and Launch Services let you look for an app by bundle identifier, but only return a ...
2
votes
1answer
62 views

Enable “Filename was downloaded from the internet…” prompt in Cocoa

I have an app that downloads ZIP files from my server, and can download plugins from other servers. Before being able to open these files, I would like to present one of the classic '"Filename.html" ...
2
votes
1answer
257 views

Given a UTI (Uniform Type Identifier), find all types to which it conforms

I am writing an application that makes use of Uniform Type Identifiers. Specifically, I am calling UTTypeCreateAllIdentifiersForTag() and passing it various MIME types. My hope was that this function ...
1
vote
2answers
323 views

Setting default application for given file extension on Mac OS X from code

I have the list of the applications for given file extension (using LSCopyApplicationURLsForURL). I want to change the default file association from code upon selecting one of the applications from ...
0
votes
2answers
23 views

inverse of LSGetApplicationForItem

I am writing a image viewer application, which I need to set as default application for jpeg/gif files. There is an API LSGetApplicationForItem/Info for getting information on what is the default ...
0
votes
1answer
51 views

How to get filename when using Launch Services

I register my app with: NSString *self_id=[[NSBundle mainBundle] bundleIdentifier]; CFStringRef cfString; cfString = UTTypeCreatePreferredIdentifierForTag( ...