ios 循环引用处理方法
2016-05-17 本文已影响79人
冰J冰
循环引用处理办法:So instead of:
#import "VistaDereIzq.h"
use:
@class VistaDereIzq;
and then add your #import to an .m file as needed.
循环引用处理办法:So instead of:
#import "VistaDereIzq.h"
use:
@class VistaDereIzq;
and then add your #import to an .m file as needed.