简体   繁体   中英

would this cause a retain cycle

xCode 5.1, iOS 7.1, ARC Would this cause a retain cycle on topics? I don't think so, as setting event=nil will deallocate the whole tree, so topics will also get deallocated, but I am not sure.

 event -> subEvent -> Topics
  |                     ^
  |_____________________|

Referring to your graphic:

Both 'arrows' go from event to topics. It would be a cycle if the lines/arrows would describe a cycle. (If topics would retain the event.)

The graphic doesn't show a cycle thus there cannot be a retain cycle in there - so no.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM