我需要在標籤上顯示本地通知消息。我知道如何在應用程序運行時處理通知的語法。如何在UILabel中顯示本地通知消息?
像這對我AppDelegate.m,
- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif {
NSLog(@"Recieved Notification %@",notif);
}
看起來不錯,我可以得到日誌信息。 如何在AppDelegate的標籤中顯示消息?例如這樣。
- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif {
NSLog(@"Recieved Notification %@",notif);
//Like this concept
MessageLabel.Text = FromNotificationMessage;
}
請幫幫我。我對iOS編程感興趣。怎麼做?
此MessageLabel在哪裏?在哪個級別?您需要將此消息存儲在全局變量或該類的任何變量中,並顯示標籤中的字符串。 –
是這樣的嗎? 'MessageLabel.Text = [NSString stringWithFormat:@「Recieved Notification%@」,notif];' – RdPC