iOS 6编程-使用Photo Library(照片库)和相机
將照片庫和App集成,可直接訪問存儲在iPhone、iPad 中的任何圖像或拍攝新照片,并在App 中使用。
1. 為了使用 UIImagePickerController,需要將類聲明為遵守2個協(xié)議:UIImagePickerControllerDelegate和UINavigationControllerDelegate。
@interface NoteViewController : UIViewController<UIImagePickerControllerDelegate, UINavigationControllerDelegate>
2. 顯示圖像選擇器
下面是點擊設(shè)置按鈕后,需要調(diào)用的方法 – 顯示圖像選擇器,讓用戶選擇圖像。
- (IBAction)settingButton:(id)sender {
UIImagePickerController *imagePicker;
imagePicker = [[UIImagePickerController alloc] init];
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imagePicker.delegate = self;
[self presentViewController:imagePicker animated:YES completion:nil];
// [self presentModalViewController:imagePicker animated:YES];
}
上述注釋的代碼,在iOS 6? 中不贊成使用。
3. 顯示選定的圖像
在用戶選擇好圖像之后,為了對用戶選擇的圖像做出響應(yīng),還需要實現(xiàn)委托方法imagePickerController:didFinishPickingMediaWithInfo:,下面是具體的代碼:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
[self dismissViewControllerAnimated:YES completion:nil];
//[self dismissModalViewControllerAnimated:YES];
self.backgroundImageView.image = [info objectForKey:UIImagePickerControllerOriginalImage];
}
實現(xiàn)在當(dāng)前場景的UIImageView元素中顯示用戶選擇的圖像。上述注釋的代碼,在iOS 6? 中不贊成使用。
轉(zhuǎn)載于:https://www.cnblogs.com/tuncaysanli/archive/2012/10/17/2727946.html
總結(jié)
以上是生活随笔為你收集整理的iOS 6编程-使用Photo Library(照片库)和相机的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Extjs 集合了1713个icon图标
- 下一篇: delphi XE 下打开内存泄漏调试功