码迷,mamicode.com
首页 > 移动开发 > 详细

iOS NSProgress的使用

时间:2014-09-25 19:24:47      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:io   os   使用   ar   strong   for   sp   cti   on   

 

@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

iOS NSProgress的使用

标签:io   os   使用   ar   strong   for   sp   cti   on   

原文地址:http://www.cnblogs.com/likuiliang/p/3993102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!