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

iOS开发多线程篇—GCD的常见用法 - 文顶顶

时间:2015-05-03 20:29:43      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

 1 //
 2 //  YYViewController.m
 3 //  01-GCD的常见使用(延迟执行)
 4 //
 5 //  Created by apple on 14-6-25.
 6 //  Copyright (c) 2014年 itcase. All rights reserved.
 7 //
 8 
 9 #import "YYViewController.h"
10 
11 @interface YYViewController ()
12 
13 @end
14 
15 @implementation YYViewController
16 
17 - (void)viewDidLoad
18 {
19     [super viewDidLoad];
20     NSLog(@"打印线程----%@",[NSThread currentThread]);
21     //延迟执行
22     //第一种方法:延迟3秒钟调用run函数
23     [self performSelector:@selector(run) withObject:nil afterDelay:2.0];
24     
25 }
26 -(void)run
27 {
28     NSLog(@"延迟执行----%@",[NSThread currentThread]);
29 }
30 
31 -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
32 {
33     //在异步函数中执行
34     dispatch_queue_t queue = dispatch_queue_create("wendingding", 0);
35     
36     dispatch_sync(queue, ^{
37         [self performSelector:@selector(test) withObject:nil afterDelay:1.0];
38     });
39     NSLog(@"异步函数");
40 }
41 -(void)test
42 {
43     NSLog(@"异步函数中延迟执行----%@",[NSThread currentThread]);
44 }
45 @end

iOS开发多线程篇—GCD的常见用法 - 文顶顶

标签:

原文地址:http://www.cnblogs.com/iosblogx/p/4474505.html

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