gpt4 book ai didi

iphone - UIImagePicker 允许编辑卡在中心

转载 作者:行者123 更新时间:2023-11-30 12:31:35 25 4
gpt4 key购买 nike

我有一个非常适合 UIImagePickerControllerSourceTypePhotoLibrary 类型的 UIImagePicker,但是当我使用 UIImagePickerControllerSourceTypeCamera 时,编辑框无法从图像中心移动。因此,如果图像的高度大于宽度,则用户无法将编辑框移动到图像的顶部方 block 。

有谁知道为什么会出现这种情况吗?仅当来源来自相机而不是库时才会发生。

编辑:一些代码!!!

if (actionSheet.tag == 2) {
if (buttonIndex == 0) { // Camera
// Check for camera
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] == YES) {
// Create image picker controller
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];

// Set source to the camera
imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
imagePicker.allowsEditing = YES;

// Delegate is self
imagePicker.delegate = self;

// Show image picker
[self presentViewController:imagePicker
animated:YES
completion:^(void) {
}];
}
}
else if (buttonIndex == 1) { // Photo Library
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary] == YES) {
// Create image picker controller
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];

// Set source to the camera
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imagePicker.allowsEditing = YES;

// Delegate is self
imagePicker.delegate = self;

// Show image picker
[self presentViewController:imagePicker
animated:YES


completion:^(void) {
}];
}
}

正如您所看到的,我显示的它们完全相同,但相机编辑的行为与照片库编辑的行为不同。

最佳答案

看起来这个行为只是iOS 6中的一个错误...基本上你不能移动编辑框,它总是弹回到中间,除非你放大一点。希望他们尽快解决这个问题。

关于iphone - UIImagePicker 允许编辑卡在中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43470999/

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