I've pieced together a few snippets from around stackoverflow, but I can't seem to get this behaving as I'd expect.
I am trying to take the NSUSerDefaults and populate a UITableView with the data.
The dictionary is populated, and all the NSLog's output what I expect. But the final cellForRowAtIndexPath is not returning anything to the table view.
I have the cell identifier and reuse set to "cell" but the table view is coming up empty
- (void)viewDidLoad {
[super viewDidLoad];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
myDictionary = [defaults dictionaryRepresentation]; }
NSLog(@"Dict: %@",myDictionary);
NSLog(@"count: %d", [myDictionary count]);
NSArray * allKeys = [myDictionary allKeys];
NSLog(@"%@",allKeys);
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1; }
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [myDictionary count]; }
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"cell";
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
NSArray * allKeys = [myDictionary allKeys];
cell.textLabel.text = [myDictionary objectForKey:[allKeys objectAtIndex:indexPath.row]];
cell.detailTextLabel.text = [myDictionary objectForKey:[allKeys objectAtIndex:indexPath.row]];;
return cell; }
at the head of my myTableViewController.m file I have:
@interface myTableViewController ()
{
NSDictionary *myDictionary;
}
myDictionarya strong variable? – H2CO3 Dec 2 '12 at 17:59NSDictionaryas the basis for a table view doesn't work. A dictionary has no order. InviewDidLoadyou should load the keys into an array and keep that in an instance variable. This array should be used as the basis for all of the data source and delegate methods. – rmaddy Dec 2 '12 at 18:04dataSourceanddelegate? – rmaddy Dec 2 '12 at 18:10