How to add Badges on UIBarbutton item?

Yuvaraj.M

Hi friends am new to iphone developing. Am struggle with add badge values on UIBarbutton item on right side. I have tried but i can't solve this problem. Can anyone help me.

Thanks in advance!

Yuvaraj.M

Finally i found the way to add badges on UIBarbutton item. I searched lot but not found the correct answer. So i created UIButton and add it as a Custom view on rightbarbutton item. Add add the MKNumberBadgeView for display the badge number. Below i have add my code for you.

// Initialize NKNumberBadgeView...
MKNumberBadgeView *number = [[MKNumberBadgeView alloc] initWithFrame:CGRectMake(60, 00, 30,20)];
number.value = 10;

// Allocate UIButton
UIButton *btn = [UIButton  buttonWithType:UIButtonTypeCustom];
    btn.frame = CGRectMake(0, 0, 70, 30);
    btn.layer.cornerRadius = 8;
    [btn setTitle:@"Button" forState:UIControlStateNormal];
    [btn addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside];
    //[btn setBackgroundColor:[UIColor blueColor]];
    [btn setBackgroundColor:[UIColor colorWithRed:0.0 green:0.0 blue:0.1 alpha:0.2]];
    btn.font = [UIFont systemFontOfSize:13];
    //[btn setFont:[UIFont systemFontOfSize:13]];
    [btn addSubview:number]; //Add NKNumberBadgeView as a subview on UIButton

// Initialize UIBarbuttonitem...
UIBarButtonItem *proe = [[UIBarButtonItem alloc] initWithCustomView:btn];
self.navigationItem.leftBarButtonItem = proe;

Thanks.

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Cannot Alter Custom UIBarButton Item

分類Dev

How to create a custom icon for a UIBarButton?

分類Dev

How to add an item to a group in a submenu

分類Dev

How to add an item to the top of a ListBox

分類Dev

How to add a single item to an existing spinner?

分類Dev

How to init List of tuple and add item in scala

分類Dev

How to add action to a Navigation Drawer item?

分類Dev

How to add an item to an array of array list

分類Dev

How to add item in DataGrid (smart way)

分類Dev

How to add Label on Bar Button Item?

分類Dev

How to add array items in one single item?

分類Dev

How to add a custom menu item to quickly add a custom tag

分類Dev

How do I add an image and a label to a tab bar item with SwiftUI

分類Dev

How to add notification value for item on NavigationView for Material Design Drawer?

分類Dev

How to Add item to string_set on Dynamodb with Boto3

分類Dev

How to add a new Activity type to the Task work item in TFS 2018

分類Dev

How to add "Remove Item" to WooCommerce checkout using a hook?

分類Dev

How to add button click to show next item from database

分類Dev

ios:how to add google ads on back button of navigation item in swift?

分類Dev

how do I add a checkbox before every list Item, and a delete button after the list item?

分類Dev

Add item to ListView (JAVA)

分類Dev

Take away part of UIBarButton

分類Dev

UIBarButton not executing Action

分類Dev

Button does not add an item to a selectManyList

分類Dev

Primefaces Picketlist; add Item with JS

分類Dev

How to add attribute to RadioButtonList item inside the input tag asp.net

分類Dev

How to add extra item at the bottom of the drawer navigation manually (like logout button)?

分類Dev

How to add 1 item hardcoded into last index in list using gridview on Flutter

分類Dev

How to write correct CSS in item.add_css() when you use FOR loop?

Related 関連記事

  1. 1

    Cannot Alter Custom UIBarButton Item

  2. 2

    How to create a custom icon for a UIBarButton?

  3. 3

    How to add an item to a group in a submenu

  4. 4

    How to add an item to the top of a ListBox

  5. 5

    How to add a single item to an existing spinner?

  6. 6

    How to init List of tuple and add item in scala

  7. 7

    How to add action to a Navigation Drawer item?

  8. 8

    How to add an item to an array of array list

  9. 9

    How to add item in DataGrid (smart way)

  10. 10

    How to add Label on Bar Button Item?

  11. 11

    How to add array items in one single item?

  12. 12

    How to add a custom menu item to quickly add a custom tag

  13. 13

    How do I add an image and a label to a tab bar item with SwiftUI

  14. 14

    How to add notification value for item on NavigationView for Material Design Drawer?

  15. 15

    How to Add item to string_set on Dynamodb with Boto3

  16. 16

    How to add a new Activity type to the Task work item in TFS 2018

  17. 17

    How to add "Remove Item" to WooCommerce checkout using a hook?

  18. 18

    How to add button click to show next item from database

  19. 19

    ios:how to add google ads on back button of navigation item in swift?

  20. 20

    how do I add a checkbox before every list Item, and a delete button after the list item?

  21. 21

    Add item to ListView (JAVA)

  22. 22

    Take away part of UIBarButton

  23. 23

    UIBarButton not executing Action

  24. 24

    Button does not add an item to a selectManyList

  25. 25

    Primefaces Picketlist; add Item with JS

  26. 26

    How to add attribute to RadioButtonList item inside the input tag asp.net

  27. 27

    How to add extra item at the bottom of the drawer navigation manually (like logout button)?

  28. 28

    How to add 1 item hardcoded into last index in list using gridview on Flutter

  29. 29

    How to write correct CSS in item.add_css() when you use FOR loop?

ホットタグ

アーカイブ