I have a custom plist and wish to display it in a UITextView in an IPad.
In the plist, I want to retrieve both "QuestionTitle" and "QuestionAnswer" from each item.
The page is basically a Answer Sheet Page, a page with a UITextView which displays all questions and answers once page is loaded.
- (void)viewDidLoad
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"DLquestions.plist"];
NSDictionary *DLDict = [[NSDictionary alloc] initWithContentsOfFile:filePath];
Is there a way for one to populate plist details into a UITextView in a specific order line by line?
Like for example,
QuestionTitle (e.g. what is 1 + 1?)
QuestionAnswer (e.g. 2)
QuestionTitle (e.g. What is 2 + 2?)
QuestionAnswer (e.g. 4)
I have been stuck for a while now.. Please help me, Thanks in advance.