Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/105.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Xcode 以ActionSheet样式访问图片库_Xcode_Swift_Uiimageview_Actionsheetpicker - Fatal编程技术网

Xcode 以ActionSheet样式访问图片库

Xcode 以ActionSheet样式访问图片库,xcode,swift,uiimageview,actionsheetpicker,Xcode,Swift,Uiimageview,Actionsheetpicker,我正在尝试在注册视图控制器中创建profilePic。profilePic的类型为UIImageView。我想能够点击它,使它立即拉一个照片库在一个行动表的风格。还有一个图像框中的一个按钮,用于访问相机。这可能吗 import UIKit class SignUpViewController: UIViewController, UITextFieldDelegate, UIPickerViewDataSource, UIPickerViewDelegate { @IBOutlet

我正在尝试在注册视图控制器中创建profilePic。profilePic的类型为UIImageView。我想能够点击它,使它立即拉一个照片库在一个行动表的风格。还有一个图像框中的一个按钮,用于访问相机。这可能吗

import UIKit

class SignUpViewController: UIViewController, UITextFieldDelegate, UIPickerViewDataSource, UIPickerViewDelegate {

    @IBOutlet weak var profilePic: UIImageView!


    override func viewDidLoad() {
        super.viewDidLoad()

        // Do any additional setup after loading the view.

        // PROFILE PICTURE

        let tapGesture = UITapGestureRecognizer(target: self, action: "imageTapped:")

        profilePic.addGestureRecognizer(tapGesture)
        profilePic.userInteractionEnabled = true

    }


    func imageTapped(gesture:UIGestureRecognizer) {
        if let profile1Pic = gesture.view as? UIImageView {
            print("Image Tapped")
        }
    }
请尝试以下代码:

import UIKit

class SignUpViewController: UIViewController, UIImagePickerControllerDelegate {

@IBOutlet weak var profilePic: UIImageView!


override func viewDidLoad() {
  super.viewDidLoad()

  let tapGesture = UITapGestureRecognizer(target: self, action: "imageTapped:")

  profilePic.addGestureRecognizer(tapGesture)
  profilePic.userInteractionEnabled = true

}


func imageTapped(gesture:UIGestureRecognizer) {
  if let profile1Pic = gesture.view as? UIImageView {
      print("Image Tapped")
      showActionSheet()
  }
}
func camera()
{
    var myPickerController = UIImagePickerController()
    myPickerController.delegate = self;
    myPickerController.sourceType = UIImagePickerControllerSourceType.Camera

    self.presentViewController(myPickerController, animated: true, completion: nil)

}

func photoLibrary()
{

    var myPickerController = UIImagePickerController()
    myPickerController.delegate = self;
    myPickerController.sourceType = UIImagePickerControllerSourceType.PhotoLibrary

    self.presentViewController(myPickerController, animated: true, completion: nil)

}

func showActionSheet() {
    let actionSheet = UIAlertController(title: nil, message: nil, preferredStyle: UIAlertControllerStyle.ActionSheet)

    actionSheet.addAction(UIAlertAction(title: "Camera", style: UIAlertActionStyle.Default, handler: { (alert:UIAlertAction!) -> Void in
        self.camera()
    }))

    actionSheet.addAction(UIAlertAction(title: "Gallery", style: UIAlertActionStyle.Default, handler: { (alert:UIAlertAction!) -> Void in
        self.photoLibrary()
    }))

    actionSheet.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil))

    self.presentViewController(actionSheet, animated: true, completion: nil)

}

func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [NSObject : AnyObject]) {

    profilePic.image = info[UIImagePickerControllerOriginalImage] as? UIImage
    self.dismissViewControllerAnimated(true, completion: nil)

}
}

这对我有好处,希望能为你做点什么

Swift 3x:

 class yourClassName:UIActionSheetDelegate,UIImagePickerControllerDelegate,UINavigationControllerDelegate {


 @IBAction func yourButtonName(_ sender: UIButton) {


        let pickerView = UIImagePickerController()
        pickerView.delegate = self
        pickerView.allowsEditing = true


        let actionSheetControllerIOS8: UIAlertController = UIAlertController(title: "Please select", message: nil, preferredStyle: .actionSheet)

        let cancelActionButton: UIAlertAction = UIAlertAction(title: "Cancel", style: .cancel) { action -> Void in
            print("Cancel") //Cancel
        }
        actionSheetControllerIOS8.addAction(cancelActionButton)

        let saveActionButton: UIAlertAction = UIAlertAction(title: "Take Photo", style: .default) { action -> Void in

            print("Take Photo") //Will open Camera
            if UIImagePickerController.isSourceTypeAvailable(.camera) {

                pickerView.sourceType = .camera
                self.present(pickerView, animated: true, completion: { _ in })
            }

        }
        actionSheetControllerIOS8.addAction(saveActionButton)

        let deleteActionButton: UIAlertAction = UIAlertAction(title: "Camera Roll", style: .default) { action -> Void in

            print("Camera Roll") //Will open Gallery

            pickerView.sourceType = .photoLibrary
            self.present(pickerView, animated: true, completion: { _ in })

        }
        actionSheetControllerIOS8.addAction(deleteActionButton)

        let deleteActionButton2: UIAlertAction = UIAlertAction(title: "Import from Facebook", style: .default) { action -> Void in
            print("Import from Facebook")
        }

        actionSheetControllerIOS8.addAction(deleteActionButton2)
        self.present(actionSheetControllerIOS8, animated: true, completion: nil)

    }

// MARK: - UIImagePickerControllerDelegate Methods

func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {

//print(info)
if let pickedImage = info[UIImagePickerControllerEditedImage] as? UIImage {

    //print(pickedImage)

    yourImageView.contentMode = .scaleAspectFit
    yourImageView.image = pickedImage

}
dismiss(animated: true, completion: nil)
}

}

我最近发布了一个GitHub存储库来处理这种类型的操作表

您可以从此处下载此类:

然后简单地写下:

编辑:

 class yourClassName:UIActionSheetDelegate,UIImagePickerControllerDelegate,UINavigationControllerDelegate {


 @IBAction func yourButtonName(_ sender: UIButton) {


        let pickerView = UIImagePickerController()
        pickerView.delegate = self
        pickerView.allowsEditing = true


        let actionSheetControllerIOS8: UIAlertController = UIAlertController(title: "Please select", message: nil, preferredStyle: .actionSheet)

        let cancelActionButton: UIAlertAction = UIAlertAction(title: "Cancel", style: .cancel) { action -> Void in
            print("Cancel") //Cancel
        }
        actionSheetControllerIOS8.addAction(cancelActionButton)

        let saveActionButton: UIAlertAction = UIAlertAction(title: "Take Photo", style: .default) { action -> Void in

            print("Take Photo") //Will open Camera
            if UIImagePickerController.isSourceTypeAvailable(.camera) {

                pickerView.sourceType = .camera
                self.present(pickerView, animated: true, completion: { _ in })
            }

        }
        actionSheetControllerIOS8.addAction(saveActionButton)

        let deleteActionButton: UIAlertAction = UIAlertAction(title: "Camera Roll", style: .default) { action -> Void in

            print("Camera Roll") //Will open Gallery

            pickerView.sourceType = .photoLibrary
            self.present(pickerView, animated: true, completion: { _ in })

        }
        actionSheetControllerIOS8.addAction(deleteActionButton)

        let deleteActionButton2: UIAlertAction = UIAlertAction(title: "Import from Facebook", style: .default) { action -> Void in
            print("Import from Facebook")
        }

        actionSheetControllerIOS8.addAction(deleteActionButton2)
        self.present(actionSheetControllerIOS8, animated: true, completion: nil)

    }

// MARK: - UIImagePickerControllerDelegate Methods

func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {

//print(info)
if let pickedImage = info[UIImagePickerControllerEditedImage] as? UIImage {

    //print(pickedImage)

    yourImageView.contentMode = .scaleAspectFit
    yourImageView.image = pickedImage

}
dismiss(animated: true, completion: nil)
}

}
● 现在支持iPad

MSActionSheet(viewController: self, sourceView: sender).showFullActionSheet {
       sender.setImage($0, for: .normal)
}
:是设置用户个人资料图片的最佳库

  • 我使用了这个库,但是iPad不支持它,所以我 定制一些功能,以支持iPad和显示 popOverController
下面是定制步骤

  • 将函数替换为
    showFullActionSheet

    func showFullActionSheet(on vc : UIViewController, over btn : UIButton,handler : @escaping (_ : UIImage?) -> Void) {
        let sheet = create().addLibrary().addFrontCamera().addRearCamera().addCancelButton()
        sheet.show(on: vc,over: btn){ (image : UIImage?) in
            handler(image)
        }
    }
    
  • 在函数
    show中的
    vc.present(MSActionSheet.sheet!,动画:true,完成:nil)之前添加代码

    if UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiom.pad {
            if let presenter = MSActionSheet.sheet?.popoverPresentationController {
                presenter.sourceView = btn
                presenter.sourceRect = btn.bounds
            }
        }
    
  • clientVC?之前添加以下代码。在函数
    handler中显示(选择器,动画:true,完成:nil)

    if UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiom.pad {
            picker.modalPresentationStyle = .popover
            if let presenter = picker.popoverPresentationController {
                presenter.sourceView = sourceBtn
                presenter.sourceRect = sourceBtn!.bounds
            }
        }
    

  • 如何使用

    let msActionSheet = MSActionSheet.instance
        msActionSheet.showFullActionSheet(on: self,over: btn){ (image) in
            btn.setImage(image, for: .normal)
        }
        msActionSheet.tintColor(color: Constants.kColorBluish)
    

  • 它对我非常有效。非常感谢你。我只想补充一句UINavigationControllerDelegate@MartinQ欢迎光临,如果它是完美的,那么请介意投票给我的答案:)显然,我的声誉不够高。我很快就会。。。跟我赤裸裸。再次感谢您如何启用allowsEditing模式,以便用户可以放大和缩小图像以获得理想的效果?例如,在上面的代码中,我在photoLibrary函数和camera函数中都添加了myPickerController.allowsEditing=true,在func imagePickerController函数中,我将ProgilePick图像操作的调用更改为profilePick.image=info[UIImagePickerControllerEditedImage]as?UIImage@MartinQ我还没试过在图像上编辑。因此,您可以参考或查看支持iPad的新版本