使用自動引用計數(ARC)時,iOS中有哪些類不能用__weak
指針引用?哪些iOS類不支持歸零弱引用?
蘋果Transitioning to ARC Release Notes只列出了蘋果班至今:
哪些類不支持零弱引用?
您當前無法創建歸零弱引用下面的類的實例:
NSATSTypesetter
,NSColorSpace
,NSFont
,NSFontManager
,NSFontPanel
,NSImage
,NSMenuView
,NSParagraphStyle
,NSSimpleHorizontalTypesetter
,NSTableCellView
,NSTextView
,NSViewController
,NSWindow
,和NSWindowController
。另外,在OS X中,AV Foundation框架中沒有任何類支持弱引用。
是否有類似的列表UIKit類或甚至iOS特定的類一般?
謝謝。
從10.8開始,可以通過ARC弱引用指向NSWindow,NSWindowController和NSViewController的實例:https://developer.apple.com/library/mac/releasenotes/AppKit/RN-AppKitOlderNotes/index.html# 10_8SharingService – 2015-10-12 09:35:11