我是iOS应用程序开发的新手......
我有一个关于推送徽标区域的视图。
我的观点也有一个PushNotificationAlertView
。
现在我的问题是,当PushNotificationAlertView
出现时,我是否能够像强调推送徽标区域一样。
警告来自UIUserNotificationSettings
在 AppDelegate.m
UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
[[UIApplication sharedApplication] registerForRemoteNotifications];
我收到如下图片的提醒
但我想以下图片请帮帮我
我该怎么做? 请帮帮我。:)
答案 0 :(得分:1)
使用自定义视图或标签突出显示。
使用以下代码通知您的viewcontroller。
从链接
添加功能下方的代码段if ([[notification name] isEqualToString:@"TestNotification"]) {
//highlight the view or label by changing color or text or what you want
}