Transitioning to ARC Release Notes によれば、 OS X 10.8 において以下のクラスが weak 参照に対応していない:
NSATSTypesetterNSColorSpaceNSFontNSMenuViewNSParagraphStyleNSSimpleHorizontalTypesetterNSTextView
OS X 10.7 では、上記に加えてこれらのクラスも weak 参照してはならない:
NSFontManagerNSFontPanelNSImageNSTableCellViewNSViewControllerNSWindowNSWindowController- AV Foundation のすべてのクラス
weak 参照した場合 "cannot form weak reference to instance (<address>) of class <ClassName>" とランタイムエラーが発生する。
これらのクラスを弱参照したい場合は、変数を __unsafe_unretained で修飾するか、プロパティ属性を unsafe_unretained (または assign)にすること。参照はゼロ化されないことに注意。