Search code examples
iphonexcodensnotificationsnsnotificationcenter

Pass object with NSNotificationCenter to other view


I am trying to pass an object from my main view class to other notification receiver in another class.

I want to pass an object named country, that loads all the cities from an SOAP Request in the Main Controller and i want to send it to my next view.

country = [[Country alloc] init];

Country header:

@interface Country : NSObject
{
    NSString *name;
    NSMutableArray *cities;
}

@property (nonatomic,retain) NSString *name;

- (void)addCity:(Cities *)city;
- (NSArray *)getCities;
- (int)citiesCount;    
@end

I found a way to pass data with NSNotificatios is using a NSDictionary in UserInfo. But its not possible to send the whole object instead of converting to an NSDictionary? Or what's the best way to transfer it? Im stuck trying to figure out how to pass the objects.

Actually i got working this simple NSNotification on my App.

NSNotification in the Main View Controller implementation:

//---Call the next View---
DetailViewController *detail = [self.storyboardinstantiateViewControllerWithIdentifier:@"Detail"];
[self.navigationController pushViewController:detail animated:YES]; 

//--Transfer Data to2View 
[[NSNotificationCenter defaultCenter] postNotificationName:@"citiesListComplete" object:nil];

NSNotification in 2View Controller implementation:

 // Check if MSG is RECEIVE
- (void)checkMSG:(NSNotification *)note {

    NSLog(@"Received Notification");
}

- (void)viewDidLoad
{
    [[NSNotificationCenter defaultCenter] addObserver:self 
                                             selector:@selector(checkMSG:) 
                                                 name:@"citiesListComplete" object:nil];

Solution

  • Oooooo, so close. I have a feeling you do not understand what an NSDictionary is though.

    Post your notification with this:

    Country *country = [[[Country alloc] init] autorelease];
    //Populate the country object however you want
    
    NSDictionary *dictionary = [NSDictionary dictionaryWithObject:country forKey:@"Country"];
    
    [[NSNotificationCenter defaultCenter] postNotificationName:@"citiesListComplete" object:nil userInfo:dictionary];
    

    then get the country object like this:

    - (void)checkMSG:(NSNotification *)note {
    
        Country *country = [[note userInfo] valueForKey:@"Country"];
    
        NSLog(@"Received Notification - Country = %@", country);
    }
    

    You don't need to convert your object into a NSDictionary. Instead, you need to send a NSDictionary with your object. This allows you to send lots of information, all based on keys in the NSDictionary, with your NSNotification.