UIBarButtonItem-Badge
UIBarButtonItem-Badge copied to clipboard
UIBarButtonItem+Badge
When the Button with badge is displayed on navigation bar for the initial loading time, it gets displayed correctly. But when navigate back to the screen from its child screens,...
I implemented this library in my Swift project, and it works great. I really appreciate it. The only problem I have is that tapping on the buttons with the badges...
Hi, i am using this control for showing badge on barbuttonitem. it works fine for the first controller or root controller in navigation controller stack. While pushing to another controller,...
If placed to YES, badge disappears for no apparent reason.
The badge is not showing on Xcode 8 working fine on Xcode 7
In my case, I customized the class by making the corner radius specifically 8 to have a rounded corner instead of a circle.
swift code: `self.navigationItem.rightBarButtonItem?.badgeValue = "\(count)"` First time it can be updaed immediately. When the value changed the view only be updated after a few seconds. It updated after about 7...
For some strange reason if I change from screen A to screen B using a slidemenu with the pushViewController instruction the badgeValue disappears, but if I turn off animations it...
what if I use "@property" instead of "@dynamic"?
The config `shouldHideBadgeAtZero` only works when set before the badge count. ``` Swift self.settingsBtn.badgeValue = "0" self.settingsBtn.shouldHideBadgeAtZero = true ``` will display a badge with value 0. When changing `shouldHideBadgeAtZero`...