#import "ViewController.h"
@interface ViewController ()<UINavigationControllerDelegate,UIImagePickerControllerDelegate>
@property (nonatomic, strong) UIImageView *imageView;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.imageView.center = self.view.center;
self.imageView.bounds = CGRectMake(0, 0, self.view.frame.size.width/2, self.view.frame.size.width/2);
[self.view addSubview:self.imageView];
}
#pragma mark - UIImagePickerControllerDelegate
- (void)tap:(UITapGestureRecognizer *)sender {
UIImagePickerController *imagePickerController = [[UIImagePickerController alloc]init];
imagePickerController.delegate = self;
imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imagePickerController.allowsEditing = YES;
[self presentViewController:imagePickerController animated:YES completion:nil];
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info {
UIImage *image = [info objectForKey:@"UIImagePickerControllerEditedImage"];
self.imageView.image = image;
[picker dismissViewControllerAnimated:YES completion:nil];
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
[picker dismissViewControllerAnimated:YES completion:nil];
}
#pragma mark -getters
- (UIImageView *)imageView {
if (!_imageView) {
_imageView = [[UIImageView alloc]init];
_imageView.userInteractionEnabled = YES;
_imageView.backgroundColor = [UIColor grayColor];
_imageView.layer.borderColor = [UIColor blackColor].CGColor;
_imageView.layer.borderWidth = 1.0f;
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tap:)];
[_imageView addGestureRecognizer:tap];
}
return _imageView;
}
iOS UIImagePickerController選擇照片
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
推薦閱讀更多精彩內(nèi)容
- TSPhotoBrowPhotos.framework封裝的圖片選擇瀏覽器,適配iOS8以上demo ??我什么都沒(méi)...
- 這兩天產(chǎn)品說(shuō)我用系統(tǒng)的UIImagePickerController界面UI很丑,迫不得已下就選擇了自定義一個(gè)照片...
- 一、UIImagePickerController 這個(gè)文章大部分摘?jiǎng)e人的,自己總結(jié)下來(lái)更方便用一點(diǎn) UIImag...
- 如何正確的學(xué)佛? 來(lái)越多,貌似佛法很興盛,這應(yīng)該是好事。但是,知道“佛教是教育”的人,少得可憐,這就是佛教的衰勢(shì)和...