在我的代码@property
中,我在我的子类中为我的 Main 类声明一个以在那里设置值
@property(nonatomic,retain) MainViewController *father;
但我注意到在我的主类中没有调用retain
该dealloc
方法,但是当我将其更改为:
@property(strong, nonatomic) BabyViewController *father;
dealloc
返回要调用的方法。
我这样做了,但不知道这是否会影响我的代码性能。
我在我的主要课程中使用它property
来做到这一点:
subClass* controller = [[subClass alloc] initWithPageNumber:page];
controller.father=self;
[controller.view removeFromSuperview];
这是我能做的最好的吗??