• NSThread


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    #import "ViewController.h"
     
    @interface ViewController ()
    {
        NSThread *thread1;
        NSThread *thread2;
        UIButton *btn;
     
    }
     @end
     
    @implementation ViewController
     
    - (void)viewDidLoad {
        [super viewDidLoad];
         btn=[UIButton buttonWithType:UIButtonTypeCustom];
        btn.frame=CGRectMake(30, 30, 50, 50);
        [btn setTitle:@"按钮" forState:UIControlStateNormal];
        btn.backgroundColor=[UIColor greenColor];
        [self.view addSubview:btn];
        //线程创建 主要有两种方法
         thread1=[[NSThread alloc] initWithTarget:self selector:@selector(threadfun1) object:nil];
         [thread1 start];//此方法创建需要手动启动
        //此方法自动启动线程方法
         [NSThread detachNewThreadSelector:@selector(threadfun2) toTarget:self withObject:nil];
     
    }
    -(void)threadfun1
    {
        NSLog(@"thread1");
        //调用主线程更新
        [self performSelectorOnMainThread:@selector(upbutton) withObject:nil waitUntilDone:NO];
        
    }
    -(void)upbutton
    {
        [btn setTitle:@"123" forState:UIControlStateNormal];
        [self performSelector:@selector(threadtothread) withObject:nil];
         
    }
    -(void)threadtothread
    {
        NSLog(@"threadtothread");
    }
    -(void)threadfun2
    {
        NSLog(@"thread2");
    }
     
    - (void)didReceiveMemoryWarning {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }
     
    @end
  • 相关阅读:
    冒泡排序
    pdo 单例类
    php 事物处理
    支付宝支付
    反向代理和负载均衡
    execl导出
    网络层
    OSI 7层 TCP/IP 4层 综合5层
    面试总结
    CMD AMD
  • 原文地址:https://www.cnblogs.com/yulei126/p/6783208.html
Copyright © 2020-2023  润新知