I have plist stored in the Document Directory,how to call in UITableView if it stored in Document Directory
.
This is how I read from the plist.
In ViewDidLoad
- (void)viewDidLoad {
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [documentPaths objectAtIndex:0];
NSString *documentPlistPath = [documentsDirectory stringByAppendingPathComponent:@"p.plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:documentPlistPath];
NSArray *valueArray = [dict objectForKey:@"title"];
self.mySections = valueArray;
[super viewDidLoad];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
//Return the number of sections.
return [self.mySections count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
NSString *key = [self.mySections objectAtIndex:section];
NSArray *dataInSection = [self.myData objectForKey:key];
return [dataInSection count];
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
NSString *key = [self.mySections objectAtIndex:section];
return [NSString stringWithFormat:@"%@", key];
}
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return self.mySections;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] ;
}
// Configure the cell...
NSUInteger section = [indexPath section];
NSUInteger row = [indexPath row];
NSString *key = [self.mySections objectAtIndex:section];
NSDictionary *dataForSection = [[self.myData objectForKey:key] objectAtIndex:0];
NSArray *array=dataForSection.allKeys;
cell.textLabel.text = [[dataForSection allKeys] objectAtIndex:row];
cell.detailTextLabel.text=[dataForSection valueForKey:[array objectAtIndex:indexPath.row]];
return cell;
}
EDIT
when i NSlog valueArray output is
( { pass = tryrt; title = tyr; },
{ pass = tryrt; title = tyr; },
{ pass = tryrt; title = tyr; }, { pass = tryrt546546; title = tyr; } )
that means problem is in
cellForRowAtIndexPath

self.myDatato be dictionary of arrays (sections) of dictionaries (rows) atnumberOfRowsInSectionbut to be a dictionary of arrays of dictionaries of arrays ofNSStringatcellForRowAtIndexPath, it's very confusing. I think it will be easier if you decide the datasource structure first. If you want to read the given .plist intoself.myDataand use it, it's not clear how this data represents sections and rows. Maybe you could explain what are thepassandtitlevalues for. Also, can you change the .plist structure if needed ? – A-Live Dec 12 '12 at 12:17passandtitle.now want to populate from plist and ya I can change but then need to make change to store data into plist – Christien Dec 12 '12 at 12:26passvalues having the same pairedtitleto be grouped into sections, so that thetitlevalue is used as the section title andpassvalues are rows text. Do you want to see something like this ? – A-Live Dec 12 '12 at 12:37