zoukankan      html  css  js  c++  java
  • 第15月第22天 libz.dylib

    1.

    1. 3.在弹出的对话框中输入"cmd"+"shift"+"g" 

    2. 4

      4.输入/usr/lib

    https://jingyan.baidu.com/article/624e745959a39934e8ba5abb.html

    2.thread

    #define RunInSeparateThread(...)                                              

        ({                                                                        

            __block __typeof__(__VA_ARGS__) result;                               

            [ACDFTPManagerThread runInSeparateThread:^{                           

                result = (__VA_ARGS__);                                           

            }];                                                                   

            result;                                                               

        })

     

    @implementation ACDFTPManagerThread
    
    + (void)runInSeparateThread:(void (^)(void))block {
        ACDFTPManagerThread *thread = [[ACDFTPManagerThread alloc] init];
        thread.block = block;
        thread->waitCondition = [[NSCondition alloc] init];
    
        [thread->waitCondition lock];
        NSThread *t = [[NSThread alloc] initWithTarget:thread
                                              selector:@selector(threadMain)
                                                object:nil];
        [t start];
        [thread->waitCondition wait];
        [thread->waitCondition unlock];
    }
    
    - (void)threadMain {
        @autoreleasepool {
            self.block();
            [waitCondition broadcast];
        }
    }
    
    @end

    https://github.com/0xwangbo/GetEasy/blob/6770a0be76929962de14891e4b3061654494ac1a/Pods/ACDFTPManager/ACDFTPManager/Classes/ACDFTPManagerThread.m

    https://github.com/search?l=Objective-C&q=main+thread+block&type=Code&utf8=%E2%9C%93

  • 相关阅读:
    forEach 终止循环
    js 解决引用赋值修改新数组导致原数组跟着改变的问题
    es6判断数组是否包含某个元素
    tab css 切换效果
    js对象赋值影响原对象
    小程序返回上个页面 修改上个页面的数据
    小程序 scroll-view scroll-x 不生效
    proxy跨域处理
    常用Dos操作指令
    django全文检索
  • 原文地址:https://www.cnblogs.com/javastart/p/8085329.html
Copyright © 2011-2022 走看看