如何获得图像选择器(swift 3),以切换回和4之间的照片库和相机



这段代码允许在Xcode中访问我的iPhone模拟器上的照片库。当我把它放在iPad上时,我可以访问相机,但不能访问照片库。我想图像视图显示相机照片,如果选择或从图片库加载图像,如果选择。

import UIKit
 class ViewController:   UIViewController,   UIImagePickerControllerDelegate, UINavigationControllerDelegate {
let picker = UIImagePickerController()
@IBOutlet weak var iv: UIImageView!
@IBAction func cameraf(_ sender: UIBarButtonItem) {
    if UIImagePickerController.isSourceTypeAvailable(.camera) {
        picker.allowsEditing = false
        picker.sourceType = UIImagePickerControllerSourceType.camera
        picker.cameraCaptureMode = .photo
        picker.modalPresentationStyle = .fullScreen
        present(picker,animated: true,completion: nil)
    } else {
        noCamera()
    }}
@IBAction func photolibaryss(_ sender: UIBarButtonItem) {
    picker.allowsEditing = false
    picker.sourceType = .photoLibrary
    picker.mediaTypes = UIImagePickerController.availableMediaTypes(for: .photoLibrary)!
    picker.modalPresentationStyle = .popover
    present(picker, animated: true, completion: nil)
    picker.popoverPresentationController?.barButtonItem = sender
}
func noCamera(){
    let alertVC = UIAlertController(
        title: "No Camera",
        message: "Sorry, this device has no camera",
        preferredStyle: .alert)
    let okAction = UIAlertAction(
        title: "OK",
        style:.default,
        handler: nil)
    alertVC.addAction(okAction)
    present(
        alertVC,
        animated: true,
        completion: nil)
}
override func viewDidLoad() {
    super.viewDidLoad()
    picker.delegate = self
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject])
{
    var  chosenImage = UIImage()
    chosenImage = info[UIImagePickerControllerOriginalImage] as! UIImage
    iv.contentMode = .scaleAspectFit
    iv.image = chosenImage
    dismiss(animated:true, completion: nil)
}
func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
    dismiss(animated: true, completion: nil)
}
override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}}

更新以上答案。它工作得很好,但是有一些错别字——需要在addActions上加右括号。Xcode 8.2还将presentViewController更改为present。

let alert = UIAlertController(title: nil, message: "Choose your source", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Camera", style: UIAlertActionStyle.Default) { (result : UIAlertAction) -> Void in
        print("Camera selected")
        //Code for Camera
        //cameraf 
    })
alert.addAction(UIAlertAction(title: "Photo library", style: UIAlertActionStyle.Default) { (result : UIAlertAction) -> Void in
        print("Photo selected")
        //Code for Photo library
        //photolibaryss
    })
self.present(alert, animated: true, completion: nil)

你可以创建一个UIAlertController,它将由两个警报动作photo library和camera组成,然后将photoibaryss和cameraf的函数代码行添加到各自的警报动作

let alert = UIAlertController(title: nil, message: "Choose your source", preferredStyle: UIAlertControllerStyle.Alert)

alert.addAction(UIAlertAction(title: "Camera", style: UIAlertActionStyle.Default) { (result : UIAlertAction) -> Void in
        print("Camera selected")
        //Code for Camera
        //cameraf 
    })
alert.addAction(UIAlertAction(title: "Photo library", style: UIAlertActionStyle.Default) { (result : UIAlertAction) -> Void in
        print("Photo selected")
        //Code for Photo library
        //photolibaryss
    })
self.present(alert, animated: true, completion: nil)

最新更新