gpt4 book ai didi

ios - Instagram 相机页面

转载 作者:搜寻专家 更新时间:2023-11-01 05:39:36 24 4
gpt4 key购买 nike

当我点击中间按钮时,我已经使用函数 ShouldSelectViewController 实现了相机胶卷,就像在 instagram 中一样。如果我点击取消,它会返回到之前的选项卡。我现在遇到的问题是,我想用所选图像显示另一个 View Controller 。有什么功能可以解决这个问题吗?

谢谢

最佳答案

如果您正在使用 UIImagePickerController,您可以实现一个委托(delegate)方法来处理选择图片后发生的事情。

  func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [NSObject : AnyObject]) {
if let image = info[UIImagePickerControllerOriginalImage] as? UIImage {
//do something with the image
}
}

您可以通过常规模式segue 到此方法中的另一个 View Controller 。例如,假设您决定将图像放在另一个名为 AnotherViewController 的 View Controller 中。

if let image = info[UIImagePickerControllerOriginalImage] as? UIImage {
let vc = storyboard!.instantiateViewControllerWithIdentifier("anotherViewController") as! AnotherViewController
vc.imageToDisplay = image
presentViewControllerAnimated(vc, animated: true)
}

关于ios - Instagram 相机页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32221840/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com