美文网首页
关于YYKit中节点在特定的线程销毁对象demo

关于YYKit中节点在特定的线程销毁对象demo

作者: d5cbd4f07363 | 来源:发表于2017-08-08 10:41 被阅读12次

    以上node节点在特定线程销毁的demo:

    1.创建Student类并重写dealloc方法

    2.创建数组students,并添加student对象。

    3.创建返回student的函数。

    4.把返回的student放到异步线程销毁,block外边student的引用计数为1,block内部会对student做retain +1操作,由于原来的student放到了autorelease里边,在student执行完class方法后出了block会对student做release操作,就会在销毁student,在student的dealloc我打印了所在的线程发现是在自线程中释放的

    相关文章

      网友评论

          本文标题:关于YYKit中节点在特定的线程销毁对象demo

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