UIImageView -- 選擇圖片

fb24 9年前發布 | 1K 次閱讀 Objective-C IOS

- (void)viewDidLoad
{
    [super viewDidLoad];

_imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
[self.view addSubview:_imageView];
_imageView.backgroundColor = [UIColor redColor];
//

_imageView.userInteractionEnabled = YES;

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(choosePictrue)];
//tap.numberOfTapsRequired  = 2;
[_imageView addGestureRecognizer:tap];
[tap release];
[_imageView release];

}

  • (void)choosePictrue{ UIImagePickerController *picc = [[UIImagePickerController alloc] init]; picc.delegate = self; picc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; [self presentViewController:picc animated:YES completion:nil]; [picc release]; }

  • (void)imagePickerController:(UIImagePickerController )picker didFinishPickingMediaWithInfo:(NSDictionary )info{ _imageView.image = [info objectForKey:UIImagePickerControllerOriginalImage]; [picker dismissViewControllerAnimated:YES completion:nil];

}

  • (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{

    [picker dismissViewControllerAnimated:YES completion:nil]; } @end</pre>

 本文由用戶 fb24 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!