gpt4 book ai didi

ios - 如何在ios中选择多选图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:43:59 24 4
gpt4 key购买 nike

我正在为 iPhone 制作一个应用程序,并希望让用户能够从他们的照片库中选择多张图片。我已经有一个用户可以一次选择四张图片的工作代码。但我不能一次选择 2 或 3 张图片。我想一次选择 2 或 3 张图片。我正在尝试以下代码。请帮助我任何人。

- (id)initImagePicker
{
ELCAlbumPickerController *albumPicker = [[ELCAlbumPickerController alloc] initWithStyle:UITableViewStylePlain];
self = [super initWithRootViewController:albumPicker];
if (self)
{
self.maximumImagesCount = 4;
[albumPicker setParent:self];
}
else if (self)
{
self.minimumImageCount=1;
[albumPicker setParent:self];
}
return self;
}

- (id)initWithRootViewController:(UIViewController *)rootViewController
{
self = [super initWithRootViewController:rootViewController];
if (self)
self.maximumImagesCount = 4;
else if (self)
self.minimumImageCount=1;
return self;
}

-(void)choosePhotoFromExistingImages
{
ELCImagePickerController *elcPicker = [[ELCImagePickerController alloc] initImagePicker];
elcPicker.maximumImagesCount = 4;
elcPicker.returnsOriginalImage = NO; //Only return the fullScreenImage, not the fullResolutionImage
elcPicker.imagePickerDelegate = self;
[self presentViewController:elcPicker animated:YES completion:nil];
}

最佳答案

你应该试试 MWPhotoBrowser Control by Michael Waterfall
他提供了单张和多张照片选择


适用于 iOS 5.1.1+。
所有字符串都是可本地化的,因此它们可以在支持多种语言的应用中使用。

关于ios - 如何在ios中选择多选图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21670656/

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