`
zl4393753
  • 浏览: 339056 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

UIImageView初始化

 
阅读更多
大多数时候我们使用uiimage时候用

[UIImage imageNamed:@"xxxx.png"];

但是这样会创建一个自动释放池,一般用路径来初始化uiimage


UIImage *image=[[UIImage alloc] initWithContentsOfFile:[[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"xxx.png"]];

UIImageView *imageView = [[UIImageView alloc] initWithImage:image];

[self.view insertSubview:imageView atIndex:0];

[image release];
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics