【问题标题】:How to add Badges on UIBarbutton like UITabBarController?如何在 UIBarbutton 上添加徽章,如 UITabBarController?
【发布时间】:2012-03-29 07:30:50
【问题描述】:

我想知道如何为 UIButton 设置一个徽章,比如 UITabBarController Badge?

【问题讨论】:

标签: iphone cocoa-touch ipad uibutton badge


【解决方案1】:

您可以使用MKNumberBadgeView

【讨论】:

    【解决方案2】:

    您只想为按钮添加背景图片

        UIImage *image = [UIImage imageNamed:@"YourBadge.png"];
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = CGRectMake(200.0, 10.0, 20.0, 20.0); // or whatever dimensions you want
        [button setBackgroundImage:image forState:UIControlStateNormal];
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-05-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-11-01
      相关资源
      最近更新 更多