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];

  • 相关阅读:
    centos 7 端口
    linux yum
    linux RPM包管理
    linux 进程
    linux 显示系统执行的进程
    linux 任务调度
    linux 组管理
    linux 压缩和解压缩
    linux 文件目录类的指令 包含查找
    PHP指定字段的多维数组排序方法
  • 原文地址:https://www.cnblogs.com/dashengios/p/10389108.html
Copyright © 2011-2022 走看看