Huy TRAN
Huy TRAN

Reputation: 496

How do you display icons for various file types in an iOS application?

I'd like to know if anyone has found a way to display icons for different file types such as MS Word documents, Adobe Flash documents etc. on iPhone using iOS SDK?

It has an equivalent way on MacOS : using the method iconForFileType of the class NSWorkspace.

Upvotes: 1

Views: 1099

Answers (1)

catlan
catlan

Reputation: 25246

Check out UIDocumentInteractionController:

@property(nonatomic,readonly) NSArray *icons

Upvotes: 2

Related Questions