这是一种取消各种作业和更新内部计数器的通用方法.
在dealloc方法中调用时会出现问题
-(voID)dealloc{ [self cancelAllPendingDownloads]; // want to cancel some jobs}-(voID)cancelAllPendingDownloads // updates some internals{ __weak __typeof__(self) weakSelf = self; // This line gets a EXC_BAD_INSTRUCTION error in runtime for(Download *dl in self.downloads) { dl.completionHandler = ^{ // want to replace the prevIoUs block weakSelf.dlcounter--; } [dl cancel]; }}
不知道为什么它在dealloc方法中失败,因为“self”仍然存在
当我将代码更改为
__typeof__(self) strongSelf = self; //everything works fine__weak __typeof__(self) weakSelf = strongSelf; (or "self") BAD_INSTRUCTION error
错误发生在第二行
解决方法 只是为了让“你不应该”或“你不能”成为其他好答案的一部分更确切:
用于存储弱引用的运行时函数是objc_storeWeak()和
Clang/ARC documentation州:
ID objc_storeWeak(ID *object,ID value);
…
If value is a null pointer or the object to which it points has begun
deallocation,object is assigned null and unregistered as a __weak
object. Otherwise,object is registered as a __weak object or has its
registration updated to point to value.
由于self对象已经开始释放,所以weakSelf应该设置为NulL
(因此没有任何用处).
但是,似乎有一个错误(如此处讨论的http://www.cocoabuilder.com/archive/cocoa/312530-cannot-form-weak-reference-to.html)objc_storeWeak()在这种情况下崩溃,而不是返回NulL.
总结以上是内存溢出为你收集整理的ios – 如何在dealloc方法中引用__weak self全部内容,希望文章能够帮你解决ios – 如何在dealloc方法中引用__weak self所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)