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... }