如何在视图上显示推送通知AlertView时突出显示特定的视图区域?

时间:2016-06-21 10:30:04

标签: ios objective-c push-notification notifications uialertview

我是iOS应用程序开发的新手......

我有一个关于推送徽标区域的视图。 我的观点也有一个PushNotificationAlertView

现在我的问题是,当PushNotificationAlertView出现时,我是否能够像强调推送徽标区域一样。

警告来自UIUserNotificationSettings
AppDelegate.m

UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
    [[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
    [[UIApplication sharedApplication] registerForRemoteNotifications];

我收到如下图片的提醒

enter image description here

我想以下图片请帮帮我

enter image description here

我该怎么做? 请帮帮我。:)

1 个答案:

答案 0 :(得分:1)

使用自定义视图或标签突出显示。

使用以下代码通知您的viewcontroller。

Use Notifier

从链接

添加功能下方的代码段
if ([[notification name] isEqualToString:@"TestNotification"]) {
//highlight the view or label by changing color or text or what you want
}