iOS NSProgress的使用
@interface ZXViewController ()
@property (nonatomic, strong) NSProgress *pro;
- (IBAction)btnOnClick:(id)sender;
@end
@implementation ZXViewController
- (void)viewDidLoad
{
[super viewDidLoad];
NSProgress *pro = [NSProgress progressWithTotalUnitCount:10000.0];
// 注册一个监听器 KVO
[pro addObserver:self forKeyPath:@"fractionCompleted" options:NSKeyValueObservingOptionNew context:nil];
}
- (IBAction)btnOnClick:(id)sender {
// 模拟改变他的属性
self.pro.completedUnitCount += 100;
}
// 监听到了属性改变会调用这个方法
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
NSLog(@"lskdjfl= %f",self.pro.fractionCompleted);
}
@end
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。