首页 > 学院 > 开发设计 > 正文

UIView的创建与内存管理

2019-11-14 20:17:19
字体:
来源:转载
供稿:网友
学习过程中遇到一些问题,现在记录下来,以后忘记以便翻看。
创建工程的步骤:
  1. xcode的ARC改为MRC
  2. .h文件中的strong改为retain
  3. .m文件中加入dealloc方法
  4. .m文件中_window初始化时加入autorelease。防止内存泄露。

创建视图的步骤:

  1. 创建视图

    UIView * redView = [[UIView alloc] initWithFrame:CGRectMake(100,100,100,100)];
  2. 配置视图

    redView.backgroundColor = [UIColor redColor];
  3. 加载视图

    [_window addSubview:redView];
  4. 内存管理

    [redView release];

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表