TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
A simple customizable countdown overlay View.
Installing with CocoaPods
If you're unfamiliar with CocoaPods you can check out this tutorial here.
Add the pod SFCountdownView
to your Podfile.
platform :ios, '7.0'
pod 'SFCountdownView'
Run pod install
.
.xcworkspace
file to launch Xcode and start using the control!Set up
// sets the delegate
self.sfCountdownView.delegate = self;
// background alpha value
self.sfCountdownView.backgroundAlpha = 0.2;
// the color of the counter
self.sfCountdownView.countdownColor = [UIColor blackColor];
// countdown start value
self.sfCountdownView.countdownFrom = 3;
// finish text to display
self.sfCountdownView.finishText = @"Do it";
// necessary to refresh alpha and countdown color
[self.sfCountdownView updateAppearance];
Countdown interaction
[self.sfCountdownView start];
[self.sfCountdownView stop];
- (void) countdownFinished:(SFCountdownView *)view
Distributed under the MIT License.