I have this code to save some notes to plist and I need to read this note on the tableview of another view controller, the save note code look like this, in my note save button click:
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *myString = [prefs stringForKey:@"noteverse"];
[delegatee.indexArray addObject:[NSString stringWithString:myString]];
//myString contains notes heading
[delegatee.notesArray addObject:_txtmainnote.text];
[notes setValue:_txtmainnote.text forKey:[NSString stringWithString:myString]];
//_txtmainnote.text contains the note in the textview
NSString *DataPath = [MyBibleAppIpadAppDelegate getPath];
[delegatee.data writeToFile:DataPath atomically:YES];
proAlertView *alert = [[proAlertView alloc]initWithTitle:nil message:@"Notes Saved" delegate:self cancelButtonTitle:@"ok" otherButtonTitles:nil];
[alert setBackgroundColor:[UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:1.0] withStrokeColor:[UIColor colorWithHue:0.0 saturation:0.0 brightness:0.0 alpha:1.0]];
[alert show];
[alert release];
I create mutable array and NSDictonary in my app delegate..delegatee.indexArray and delegatee.notsarray are NSMutableArray from app delegate
notes is NSMutableDictonary
delegatee.data is NSMutableDictonary from appdelegate
In my nexttableview controller I have this code to show the notes in UItableview:
#pragma mark Table view methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [appDelegate.indexArray count];
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *CellIdentifier;
CellIdentifier=[NSString stringWithFormat:@"cell %d",indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
count++;
NSMutableString *str=[[NSMutableString alloc]initWithString:[appDelegate.indexArray objectAtIndex:indexPath.section]];
cell.textLabel.text =str;
cell.textLabel.font =[UIFont fontWithName:@"Georgia" size:18.0f];
cell.textLabel.textColor =[UIColor brownColor];
NSMutableString *notes=[[NSMutableString alloc]initWithString:[appDelegate.notesArray objectAtIndex:indexPath.section]];
cell.detailTextLabel.text = notes;
cell.selectionStyle = UITableViewCellSelectionStyleGray;
cell.accessoryType =UITableViewCellAccessoryDisclosureIndicator;
}
return cell;
}
What is the mistake in my code, I didn't get the values in the tableview, when I saved the note. Please help me to do this! Thanks in advance!