var image = UIImagePickerController()
image.delegate = self
image.navigationBar.tintColor = UIColor.whiteColor()
image.sourceType = UIImagePickerControllerSourceType.Camera
image.allowsEditing = false
self.presentViewController(image, animated: true, completion: nil)
这是我正在使用的代码。我需要拍摄这张照片,无论是以风景还是肖像拍摄,并将其调整为完美的正方形。简单地将allowEditing设置为true并不起作用,因为如果它是横向拍摄的,它不会正确裁剪并且顶部有一个黑条。我真的很困惑如何做到这一点。
执行此操作的应用程序的完美示例是Instagram或特别是Vine。我需要张贴的每张照片都是一个完美的广场。谢谢!