当前位置:  开发笔记 > 编程语言 > 正文

如何在Objective-C中创建实例变量

如何解决《如何在Objective-C中创建实例变量》经验,为你挑选了1个好方法。



1> Andrew Grant..:

要使其成为实例变量,您可以将值存储在类中而不是临时变量中.当您的类被销毁而不是将其添加为子视图后,您也将释放它.

例如

// header file (.h)
@interface MyController : UIViewController
{
  UIImageView* myPicture;
}
@end

// source file (.m)
- (void) viewDidLoad
{
   myPicture = [[UIImageView alloc] initWithImage: myImageRef];
   [self.view addSubview:myPicture];

   [super viewDidLoad];
}

- (void) dealloc
{
   [myPicture release];
   [super dealloc];
}

推荐阅读
mobiledu2402852413
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有