美文网首页
dispatch_once_t 那点事

dispatch_once_t 那点事

作者: lltree | 来源:发表于2017-11-03 17:50 被阅读8次
      static dispatch_once_t onceToken;
        dispatch_once(&onceToken, ^{
            <#code to be executed once#>
        });
        
    

    dispatch_once_t 在整个app存在期间只执行一次,默认onceToken 为0 执行一次后为-1 ,如果需要再次执行则需要 设置 onceToken 为非 0

    相关文章

      网友评论

          本文标题:dispatch_once_t 那点事

          本文链接:https://www.haomeiwen.com/subject/vdztmxtx.html