ios - Attach file like doc,PDF,etc... to application in iphone -
ios - Attach file like doc,PDF,etc... to application in iphone -
i want attache file in iphone application do? attach here screenshot improve understanding.
in screenshot arrows point button , on button click want attach file. i'm new in ios development please help me if possible give me link or answer. did search on topic every link gives email attachment not proper reply if can done in past please help me. give thanks in advance!!
you can browse file in application dir by:
nsstring *documentsdirectory = [nshomedirectory() stringbyappendingpathcomponent:@"documents"]; nsfilemanager *manager = [nsfilemanager defaultmanager]; nsarray *filelist = [manager contentsofdirectoryatpath:documentsdirectory error:nil]; (nsstring *s in filelist){ nslog(@"%@", s); }
and here list file on viewcontroller.
ios iphone
Comments
Post a Comment