1 - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
2 {
3 //获取当前选中的图片.通过UIImagePickerControllerOriginalImage就能获取.
4 UIImage *image = info[UIImagePickerControllerOriginalImage];
5
6 HandleImageView *handView = [[HandleImageView alloc] init];
7 handView.frame = self.drawView.bounds;
8 handView.image = image;
9 handView.delegate = self;
10
11
12 NSLog(@"%@", handView.backgroundColor);
13 [self.drawView addSubview:handView];
14
15 // self.drawView.image = image;
16 //让系统相册控制器消失
17 [self dismissViewControllerAnimated:YES completion:nil];
18
19 }