Skip to content

carabina/EasyNotificationBadge

 
 

Repository files navigation

EasyNotificationBadge

UIView extension that adds a notification badge.

The code that was used in this extension was originally written by mustafaibrahim989 in the library MIBadgeButton-Swift.

##Screenshots

##Installation

pod 'EasyNotificationBadge'

Or simply drag and drop NSBadge.swift to your project.

##Usage

To add a badge with default settings use this (This also applies to updating an existing badge):

view.badge(text: "5")
barButtonItem.badge(text: "7")

To remove the badge:

view.badge(text: nil)
barButtonItem.badge(text: nil)

##Advanced Usage

let badgeAppearnce = BadgeAppearnce()
appearnce.backgroundColor = UIColor.blue //default is red
appearnce.textColor = UIColor.white // default is white
appearnce.alignment = .center //default is center
appearnce.textSize = 15 //default is 12
appearnce.distenceFromCenterX = 15 //default is 0
appearnce.distenceFromCenterY = -10 //default is 0
appearnce.duration = 0.1 //default is 0.2
button.badge(text: badge, appearnce:appearnce)

About

UIView extension that adds a notification badge.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 96.1%
  • Ruby 3.9%