第一步
添加协议
UIImagePickerControllerDelegate,UINavigationControllerDelegate
第二步
添加选择方式
let sexActionSheet = UIAlertController.init(title: nil, message: nil, preferredStyle: .actionSheet)
weak var weakSelf = self
let sexNanAction = UIAlertAction(title: "从相册中选择", style: UIAlertActionStyle.default){ (action:UIAlertAction)in
weakSelf?.initPhotoPicker()
//填写需要的响应方法
}
let sexNvAction = UIAlertAction(title: "拍照", style: UIAlertActionStyle.