Hey I have made up a plist file that has an array of strings init, I’m now trying to figure out a way to load it into my uitableview but am struggling to find a decent example of this.
any help would be appreciated.
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.
Read the plist data into a data structure (probably an array using + (id)arrayWithContentsOfFile:(NSString *)aPath
). Setup the UITableView’s delegate to a class that has access to that array, tell the table view to reloadView.