RTDraggableBadge 0.1.2

RTDraggableBadge 0.1.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Nov 2015

Maintained by Ricky Tan.




  • By
  • rickytan

This project is inspired by Mobile QQ, a drag to clear badge view.

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

[self.button rt_setBadge:@"new"
              withHandle:^(RTDraggableBadge *badge, RTDragState state) {
                  if (state == RTDragStateDragged) {
                      badge.text = @"n";
                  }
              }];

RTDraggableBadge *badge = [RTDraggableBadge badgeWithDragHandle:^(RTDraggableBadge *badge, RTDragState state) {
    if (state == RTDragStateDragged) {
        // do clear your badge number
    }
}];

TL;DR

See the demo below:

Demo

Requirements

  • iOS 7+
  • Xcode 6+

Installation

RTDraggableBadge is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "RTDraggableBadge"

Author

License

RTDraggableBadge is available under the MIT license. See the LICENSE file for more info.