#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//////---------runloop的获取--------////////
//Cocoa中获取runloop的方法
//获取当前线程的runloop
NSRunLoop *currentRunloop = [NSRunLoop currentRunLoop];
//获取主线程runloop
NSRunLoop *mainrunloop = [NSRunLoop mainRunLoop];
NSLog(@"currentRunloop is:%@",currentRunloop);
NSLog(@"mainrunloop is:%@",mainrunloop);
//Core Foundition获取runloop的方法
//获取当前线程的runloop
CFRunLoopGetCurrent();
//获取主线程runloop
CFRunLoopGetMain();
////////-------runloop的mode------/////////
//创建nstimer
// NSTimer *timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(time) userInfo:nil repeats:YES];
//该种方式创建nstimer 将会以默认的模式添加到runloop NSDefaultRunLoopMode
NSTimer *scheduleTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(scheduleTime) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:scheduleTimer forMode:NSRunLoopCommonModes];
//对UI控件拖动时 runloop的执行模式为UITrackingRunLoopMode
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(100, 100, 200, 500)];
scrollView.contentSize = CGSizeMake(500, 800);
scrollView.backgroundColor = [UIColor redColor];
[self.view addSubview:scrollView];
}
-(void)time
{
NSLog(@"------timer--------");
}
-(void)scheduleTime
{
NSLog(@"------stimer--------");
}
@end
多线程 RunLoop
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 又来到了一个老生常谈的问题,应用层软件开发的程序员要不要了解和深入学习操作系统呢? 今天就这个问题开始,来谈谈操...