আমি আমার অ্যাপের প্রতিনিধি থেকে অন্য ক্লাসের কোনও বিজ্ঞপ্তি গ্রহণকারীকে কোনও বস্তুটি পাস করার চেষ্টা করছি।
আমি পূর্ণসংখ্যা প্রেরণ করতে ইচ্ছুক messageTotal
। এখনই আমার আছে:
রিসিভারে:
- (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];
বিজ্ঞপ্তিটি করছে এমন শ্রেণিতে:
[UIApplication sharedApplication].applicationIconBadgeNumber = messageTotal;
[[NSNotificationCenter defaultCenter] postNotificationName:@"eRXReceived" object:self];
তবে আমি messageTotal
অন্য শ্রেণীর কাছে বস্তুটি পাস করতে চাই ।