I'm trying to use they keys from an array in a plist as the label for a table. This is what I've tried so far.
I've declared an ivar: NSArray *viewerKeys;
in viewDidLoad
`NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
// get documents path
NSString *documentsPath = [paths objectAtIndex:0];
// get the path to our Data/plist file
NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"Data.plist"];
NSMutableDictionary *dictionary = [NSMutableDictionary dictionaryWithContentsOfFile:(NSString *)plistPath];
viewerKeys = [dictionary allKeys];`
and in cellForRowAtIndexPath
UILabel *label = (UILabel *)[cell viewWithTag:1000];
label.text = [viewerKeys objectAtIndex:indexPath.row];
I can log viewerKeys from viewdidload but if i try NSLog@"%@", [viewerKeys objectATIndex:indexPath.row] I get nothing - not even null.
viewDidLoadandcellForRowAtIndexPath:that you are using – Paul.s Feb 13 at 23:01[dictionary allKeys];it's possible that is blank – Bot Feb 13 at 23:06[dictionary allKeys]). Although I haven't tried it inside cellForRowAtIndexPath with just viewerKeys – Chris Byatt Feb 14 at 1:03viewerKeysis defined as property, then just assignself.viewerKeys = [dictionary allKeys];. or[viewerKeys retain];Not sure.Just give a try. – HRM Feb 14 at 7:27@property (nonatomic, retain) NSArray *viewerKeysand changed all references toviewerKeystoself.viewerKeys. No luck. – Chris Byatt Feb 14 at 9:18