How can i populate table view with local files.
What do i need to use. Will it be possible if i use NSFileManager and UITableView in combination ?
How can i populate table view with local files. What do i need to
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
use NSFileManager’s directoryContentAtPath to get the list of all the files and directory at a given path. directoryContentAtPath returns NSArray, use the same to populate the table.