@property (nonatomic, retain) NSMutableArray *filteredListContent;
----
@synthesize filteredListContent;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
NSMutableArray *test = [[NSMutableArray alloc] init];
[test addObject:@"test string"];
[filteredListContent addObjectsFromArray:test];
NSLog(@"%@", test);
NSLog(@"Filtered Array is %@", filteredListContent);
[window makeKeyAndVisible];
}
My Log for test shows 'test string' but 'Filtered list array is (null)'
How do I set the array 'filteredListContent' with the array test...
What am I doing wrong? :-(