浏览 3675 次
锁定老帖子 主题:iPhone快速参考:显示本地的图片
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-03-24
最后修改:2011-03-24
- (void)viewDidLoad { NSString *homeDirectoryPath = NSHomeDirectory(); NSString *imagePath = [homeDirectoryPath stringByAppendingString:@"/graph.png"]; NSLog(@"Image: %@", imagePath); if (![[NSFileManager defaultManager] fileExistsAtPath:imagePath isDirectory:NULL]) { UIImageView * myImageView = [[UIImage alloc] initWithContentsOfFile: imagePath]; //[[NSFileManager defaultManager] createDirectoryAtPath:imagePath attributes:nil];
[self.view addSubview:myImageView]; [myImageView release]; } [super viewDidLoad]; } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |