ios - Image file extension Xcode -


i'm programming app similar email. when attach file message show filename + small image (icon), icon should according filetype, example pdf if file pdf, word id file word file ....

anyone know how can find these small images ? or representative example ?

advanced thank

if ios can use uidocumentinteractioncontroller:

nsurl *url = [nsurl fileurlwithpath:pathtoyourfile]; uidocumentinteractioncontroller *diac = [uidocumentinteractioncontroller interactioncontrollerwithurl:url]; nsarray *icons = diac.icons; if ([icons count] > 0) {     // smallest available icon:     uiimage *icon = [icons objectatindex:0]; } else {     // no icon found.     // according documentation, case *should not* occur... } 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -