如何自定义ios 6中的通知视图

时间:2013-12-03 05:41:36

标签: ios iphone objective-c

我试图自定义通知视图,就像我们收到默认通知时显示'DOT'符号,但我想要下面的图像格式,这里我在我的应用程序中附加了我需要的任何通知。请帮助我,任何人都知道,

enter image description here

在我写的didReceiveRemote Notification下,如下所示

    mv1 = [[mv alloc]init];
    NSLog(@"test%@",userInfo);
    [mv1 displayItem:userInfo];  // custom method

   imgview.image=[UIImage imageNamed:@"img1.jpeg"];
    //    NSMutableDictionary *test = [userInfo objectForKey:@"aps"];
//    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Message" message:[test objectForKey:@"alert"] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
//    [alert show];
     //[[NSNotificationCenter defaultCenter] postNotificationName:@"pushNotification" object:nil userInfo:userInfo];

1 个答案:

答案 0 :(得分:1)

您无法自定义通知中心。因为它与操作系统有关,而不是您应用的一部分。 Apple不会允许这种自定义。