ytyubox / YuBlog

這是用來記錄的Blog,紀錄內容在 Issues 頁面中。
0 stars 0 forks source link

20190320 weak & unowned #11

Open ytyubox opened 5 years ago

ytyubox commented 5 years ago
aClosure = { [unowned self]  in
....
}

等價於

bClosure = { [weak self] in
    guard let self = self else {return}
    ...
}

weak, unowned 垃圾資訊的下場

螢幕快照 2019-03-20 22 51 26