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? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -