1
walkingway 2015-03-26 23:00:57 +08:00
如果 tableview 只有 tableviewController 指向(strong)他,就不用,因为 tableviewController 销毁了,tableview 也跟着销毁了,当然 delegate 要设成 weak。
|
2
georgetso OP @walkingway 我是说在 interface builder 里的做法
|
3
huanglexus 2015-03-27 00:45:31 +08:00 via iPhone 1
不用设置。。
代码写也不用写这多余的delegate=nil 因为这是weak指针。 |
5
georgetso OP 已感谢
|
6
xuzhongzhou 2015-03-27 11:13:56 +08:00
You do not have to (indeed cannot) release instance variables, but you may need to invoke [self setDelegate:nil] on system classes and other code that isn’t compiled using ARC.
|
7
kepenj 2015-04-01 14:13:18 +08:00
保持良好习惯dealloc 里面制空。
|
8
kobe1941 2015-04-14 10:57:58 +08:00
delegate一直用weak修饰,不用在dealloc里设置为nil,多此一举(ARC下)。
|