一个简单可定制的倒计时覆盖视图。
使用 CocoaPods 安装
如果您对 CocoaPods 不熟悉,可以在此处查看本教程 在此处。
将 pod SFCountdownView
添加到您的 Podfile 中。
platform :ios, '7.0'
pod 'SFCountdownView'
运行 pod install
。
.xcworkspace
文件以启动 Xcode 并开始使用控件!设置
// 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];
倒计时交互
[self.sfCountdownView start];
[self.sfCountdownView stop];
- (void) countdownFinished:(SFCountdownView *)view
Distributed under the MIT License.