Swift - iOS 照片选取和拍照
HImagePickerUtils-Swift
使用:
weak var weakSelf = self
imagePicker = HImagePickerUtils()// HImagePickerUtils 对象必须为全局变量,不然UIImagePickerController代理方法不会执行
imagePicker.pickPhotoEnd = {a,b,c in if b == HTakeStatus.Success { imageView.image = a }else{ let alert = UIAlertController(title: "Info", message: c, preferredStyle: UIAlertControllerStyle.Alert) let action = UIAlertAction(title: "好的", style: UIAlertActionStyle.Default, handler: nil) alert.addAction(action) weakSelf?.presentViewController(alert, animated: true, completion: nil) } }
从相册取:
imagePicker.choosePhoto(self)
拍一张:
imagePicker.takePhoto(self)
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!