Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
What is the content of the file after you save it? – Omar Abdelhafith May 23 '12 at 5:42
I think, while accessing the values in array you should use [appDelegate.indexarray objectAtIndex:indexpath.row] not section same for notearray also if you are getting the values in array. – iMash May 23 '12 at 5:46
@OmarAbdelhafith which content sir?its string.my string contains genesis1:1 and textview.text contais some notes – stackiphone May 23 '12 at 5:51
@mihirios ok let me chk.thanks – stackiphone May 23 '12 at 5:52
@mihirios not its not woking,is there any other way to save this value and show it in my tablewview? – stackiphone May 23 '12 at 5:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.