zoukankan      html  css  js  c++  java
  • 线程间的通信

    开辟新的线程:

    [NSThread detachNewThreadSelector:@selector(download) toTarget:self withObject:nil];

    [self performSelectorInBackground:@selector(download) withObject:nil];

     

    子线程与主线程的通信:

    [self performSelectorOnMainThread:@selector(showImg:) withObject:image waitUntilDone:NO];//最后参数传NO表示不需要等待该方法执行完毕

    [self performSelector:@selector(download) onThread:[NSThread mainThread] withObject:nil waitUntilDone:NO];

  • 相关阅读:
    Spring Boot 应用监控
    学习学习SpringSecurity
    Spring Cloud 简介
    thinkphp 请求
    八、主从复制
    七、AOF 持久化
    五、五大数据类型实现原理
    六、RDB 持久化
    四、redis的底层数据结构
    三、五大数据类型详细用法
  • 原文地址:https://www.cnblogs.com/dashengios/p/10389108.html
Copyright © 2011-2022 走看看