iOS 开发实用技术导航
NSHipster 中文版
› http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
› http://www.cocos2d-iphone.org/
CocoaPods
› http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
› http://code.google.com/mobile/analytics/
WWDC
› https://developer.apple.com/wwdc/
Design Guides and Resources
› https://developer.apple.com/design/
Transcripts of WWDC sessions
› http://asciiwwdc.com
Cocoa with Love
› http://cocoawithlove.com/
Cocoa Dev Central
› http://cocoadevcentral.com/
NSHipster
› http://nshipster.com/
Style Guides
› Google Objective-C Style Guide
› NYTimes Objective-C Style Guide
Useful Tools and Services
› Charles Web Debugging Proxy
› Smore
mercurylanded
V2EX  ›  iDev

我使用APN推送通知之后应用右上方的数字一直不会消失,在下拉的通知栏把通知都清除之后依然存在. 这个怎么消掉?

  •  
  •   mercurylanded · Jan 16, 2013 · 4665 views
    This topic created in 5002 days ago, the information mentioned may be changed or developed.
    Supplement 1  ·  Jan 17, 2013
    再问一个问题..我有一个string数组 NSArray 怎么传到UIActionSheet的titles里面?
    4 replies  •  1970-01-01 08:00:00 +08:00
    plucury
        1
    plucury  
       Jan 16, 2013
    这个需要应用自己去掉的,或者再推一个badge:0
    mercurylanded
        2
    mercurylanded  
    OP
       Jan 16, 2013
    @plucury 应用怎么去?调用哪个方法?
    jcccn
        3
    jcccn  
       Jan 16, 2013   ❤️ 1
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
    bytelee
        4
    bytelee  
       Jan 16, 2013   ❤️ 1
    if (![launchOptions objectForKey:@"UIApplicationLaunchOptionsRemoteNotificationKey"])
    {
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:1];

    }

    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];

    其实这样就可以,貌似如果直接设置0 有的时候是会有问题的。在简单点:
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:1];
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];

    应该也行.
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   812 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 22:00 · PVG 06:00 · LAX 15:00 · JFK 18:00
    ♥ Do have faith in what you're doing.