в режиме быстрого просмотра можно выбрать камеру или галерею 4 - PullRequest
0 голосов
/ 26 августа 2018

У меня есть viewcontroller с контроллером навигации.У меня есть кнопка для загрузки изображений. Но после нажатия кнопки она не выскакивает предупреждение о параметрах камеры или фото библиотеки, хотя я написал коды для предупреждения.Почему не появляется всплывающее окно с предупреждением?Я также дал конфиденциальность - описание использования библиотеки фотографий в info.plist.Мой код указан:

import UIKit
import  Alamofire

class ProfilePicController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {


var imagePicker = UIImagePickerController()


@IBOutlet weak var uploadPic: UIButton!
@IBOutlet weak var profilePic: UIImageView!


override func viewDidLoad() {
    super.viewDidLoad()

  imagePicker.delegate = self
  profilePic.layer.cornerRadius = profilePic.frame.size.width / 2
  profilePic.clipsToBounds = true


    // Do any additional setup after loading the view.
}


@IBAction func uploadPic(_ sender: Any) {

 print("image add")

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")
  self.imagePicker.sourceType = UIImagePickerControllerSourceType.camera

})
alert.addAction(UIAlertAction(title: "Photo library", style: UIAlertActionStyle.default) { (result : UIAlertAction) -> Void in
  print("Photo selected")
  self.imagePicker.sourceType = UIImagePickerControllerSourceType.photoLibrary

})

self.present(self.imagePicker, animated: true, completion: nil)

}
 func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
 let selectedImage = info[UIImagePickerControllerOriginalImage] as! UIImage

 profilePic.image = selectedImage
 // self.savePic()
 dismiss(animated: true, completion: nil)
 }

 func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
 dismiss(animated: true, completion: nil)
}

// Файл Alert.swift

import UIKit

class Alert {

class func showBasic(title: String ,message: String , vc: UIViewController) {
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
alert.addAction(defaultAction)
vc.present(alert, animated: true, completion: nil)
}
}

1 Ответ

0 голосов
/ 26 августа 2018

На самом деле вы не представляете предупреждение

@IBAction func uploadPic(_ sender: Any) {

  print("image add")

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

  alert.addAction(UIAlertAction(title: "Camera", style: .default) { (result : UIAlertAction) -> Void in
    print("Camera selected")
    self.imagePicker.sourceType = .camera
    self.present(self.imagePicker, animated: true, completion: nil)
  })
  alert.addAction(UIAlertAction(title: "Photo library", style: .default) { (result : UIAlertAction) -> Void in
    print("Photo selected")
    self.imagePicker.sourceType = .photoLibrary
    self.present(self.imagePicker, animated: true, completion: nil)
  })

  self.present(alert, animated: true, completion: nil)

}
...