Uygulama temsilcimden başka bir sınıftaki bir bildirim alıcısına bir nesne geçirmeye çalışıyorum.
Tamsayı geçirmek istiyorum messageTotal
. Şu anda var:
Alıcıda:
- (void) receiveTestNotification:(NSNotification *) notification
{
if ([[notification name] isEqualToString:@"TestNotification"])
NSLog (@"Successfully received the test notification!");
}
- (void)viewDidLoad {
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(dismissSheet) name:UIApplicationWillResignActiveNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveTestNotification:) name:@"eRXReceived" object:nil];
Bildirimi yapan sınıfta:
[UIApplication sharedApplication].applicationIconBadgeNumber = messageTotal;
[[NSNotificationCenter defaultCenter] postNotificationName:@"eRXReceived" object:self];
Ama nesneyi messageTotal
diğer sınıfa geçirmek istiyorum .