UIImagePicker初始化花费的时间太长

约翰·多亚

我有一个imagePicker,初始化它需要很长时间,它使屏幕滞后,例如,当我单击一个按钮移动时,我有一个屏幕,用户可以在其中写信息并选择图片。到该屏幕,在实际移动到该屏幕之前会滞后一点。我运行了Time Profiler,屏幕的问题似乎是imagePicker的初始化。

这是imagePicker类:

import UIKit

public protocol ImagePickerDelegate: class {
    func didSelect(image: UIImage?)
}

class ImagePicker: NSObject {

    private let pickerController: UIImagePickerController
    private weak var presentationController: UIViewController?
    private weak var delegate: ImagePickerDelegate?

    init(presentationController: UIViewController, delegate: ImagePickerDelegate){
        self.pickerController = UIImagePickerController()

        super.init()

        self.presentationController = presentationController
        self.delegate = delegate

        self.pickerController.delegate = self
        self.pickerController.allowsEditing = true
        self.pickerController.mediaTypes = ["public.image"]
    }

    private func action(for type: UIImagePickerController.SourceType, title: String) -> UIAlertAction?{
        guard UIImagePickerController.isSourceTypeAvailable(type) else { return nil}
        return UIAlertAction(title: title, style: .default, handler: { [unowned self] _ in
            self.pickerController.sourceType = type
            self.presentationController?.present(self.pickerController, animated: true)
        })
    }

    func present(from sourceView: UIView){
        let alertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
        if let action = self.action(for: .camera, title: ImagePickerStrings.takePicture){
            alertController.addAction(action)
        }

        if let action = self.action(for: .savedPhotosAlbum, title: ImagePickerStrings.cameraRoll) {
            alertController.addAction(action)
        }

        alertController.addAction(UIAlertAction(title: GeneralStrings.cancel, style: .cancel, handler: nil))

        self.presentationController?.present(alertController, animated: true)
    }

    private func pickerController(_ controller: UIImagePickerController, didSelect image: UIImage?){
        controller.dismiss(animated: true, completion: nil)
        self.delegate?.didSelect(image: image)
    }
}

extension ImagePicker: UIImagePickerControllerDelegate{
    public func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
        self.pickerController(picker, didSelect: nil)
    }

    public func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
        guard let image = info[.editedImage] as? UIImage else {
            return self.pickerController(picker, didSelect: nil)
        }
        self.pickerController(picker, didSelect: image)
    }
}

这就是我初始化它的方式:

我在班级里有这个变量:

var imagePicker: ImagePicker!

这是在viewDidLoad中:

override func viewDidLoad() {
    super.viewDidLoad()
    imagePicker = ImagePicker(presentationController: self, delegate: self)
}
沃尔夫塞斯沃夫

在模拟器上通常很慢,在调试模式下通常很慢。

看到alloc初始化时UIImagePickerController真的很慢

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章