iOS 通过collectionView实现照片删除功能

一,效果图。

二,工程图。

三,代码。

ViewController.h

#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout,UIAlertViewDelegate,UIActionSheetDelegate,UIImagePickerControllerDelegate,UINavigationControllerDelegate>
{
 UICollectionView *_collectionView;
 UIImagePickerController *_imagePicker;
 NSMutableArray *photos;
 NSMutableArray *dataArray;
 NSInteger deleteIndex;
 BOOL wobble;
}
@end

ViewController.m

//点击添加按钮的时候,停止删除。
#import "ViewController.h"
#import "photoCollectionViewCell.h"
NSInteger const Photo = 8;
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
 [super viewDidLoad];
 // Do any additional setup after loading the view, typically from a nib.
 //其布局很有意思,当你的cell设置大小后,一行多少个cell,由cell的宽度决定
 UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc]init];
 //设置cell的尺寸
 [flowLayout setItemSize:CGSizeMake(70, 70)];
 //设置其布局方向
 [flowLayout setScrollDirection:UICollectionViewScrollDirectionVertical];
 //设置其边界(上,左,下,右)
 flowLayout.sectionInset = UIEdgeInsetsMake(5,5,5,5);
 _collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(10, 50, 320,85*2) collectionViewLayout:flowLayout];
 _collectionView.dataSource = self;
 _collectionView.delegate = self;
 _collectionView.backgroundColor = [UIColor redColor];
 [_collectionView registerClass:[photoCollectionViewCell class] forCellWithReuseIdentifier:@"photo"];
 [self.view addSubview:_collectionView];
 photos = [[NSMutableArray alloc ] init];
 dataArray = [[NSMutableArray alloc ] init];
 [dataArray addObject:[UIImage imageNamed:@"contract_addpic1"]];
}
//section
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
 return 1;
}
//item个数
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
 return dataArray.count;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
 NSLog(@"--indexPath.row--%ld",indexPath.row);
 NSLog(@"---indexpath.section--%ld",indexPath.section);
 photoCollectionViewCell *cell = (photoCollectionViewCell *)[collectionView dequeueReusableCellWithReuseIdentifier:@"photo" forIndexPath:indexPath];
 cell.tag=indexPath.row;
 //图片
 cell.photoImage.image=dataArray[indexPath.row];
 // 删除按钮
 cell.deleteBtn.tag =indexPath.row;
 cell.deleteBtn.hidden=YES;
 [cell.deleteBtn addTarget:self action:@selector(doClickDeleteButton:) forControlEvents:UIControlEventTouchUpInside];
 //增加按钮
 if (indexPath.row == dataArray.count -1) {
  cell.addBtn.hidden = NO;
 }else
 {
  cell.addBtn.hidden = YES;
 }
 [cell.addBtn addTarget:self action:@selector(doClickAddButton:) forControlEvents:UIControlEventTouchUpInside];
 // 长按删除
 UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc ] initWithTarget:self action:@selector(longPressedAction)];
 [cell.contentView addGestureRecognizer:longPress];
 return cell;
}
#pragma -mark -doClickActions
//删除按钮
-(void)doClickDeleteButton:(UIButton *)btn
{
 NSLog(@"-----doClickDeleteButton-------");
 UIAlertView *alert = [[UIAlertView alloc ] initWithTitle:@"提示" message:@"您确定要删除吗?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
 deleteIndex = btn.tag;
 [alert show];
 NSLog(@"---delete--dataArray---%@",dataArray);
}
//增加按钮
-(void)doClickAddButton:(UIButton *)btn
{
 NSLog(@"-----doClickAddButton-------");
 if (wobble) {
  // 如果是编辑状态则取消编辑状态
  [self cancelWobble];
 }else{
  //不是编辑状态,添加图片
  if (dataArray.count > Photo) {
   UIAlertView *alert = [[UIAlertView alloc ] initWithTitle:@"提示" message:@"最多支持8个" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
   [alert show];
  }else
  {
   UIActionSheet *actionSheet = [[UIActionSheet alloc]
           initWithTitle:nil
           delegate:(id)self
           cancelButtonTitle:@"取消"
           destructiveButtonTitle:nil
           otherButtonTitles:@"拍照", @"我的相册",nil];
   actionSheet.actionSheetStyle = UIActionSheetStyleBlackOpaque;
   [actionSheet showInView:self.view];
  }
 }
 NSLog(@"---add--dataArray---%@",dataArray);
}
//长按删除
-(void)longPressedAction
{
 NSLog(@"-----longPressedAction-------");
 wobble = YES;
 NSArray *array = [_collectionView subviews];
 for (int i = 0; i < array.count; i ++) {
   if ([array[i] isKindOfClass:[photoCollectionViewCell class]]) {
   photoCollectionViewCell *cell = array[i];
   if (cell.addBtn.hidden) {
    cell.deleteBtn.hidden = NO;
   }
   else
   {
    cell.deleteBtn.hidden = YES;
    cell.photoImage.image = [UIImage imageNamed:@"ensure"];
    cell.tag = 999999;
   }
   // 晃动动画
   [self animationViewCell:cell];
  }
 }
}
// 取消晃动
-(void)cancelWobble
{
 wobble = NO;
 NSArray *array = [_collectionView subviews];
 for (int i = 0; i < array.count; i ++) {
  if ([array[i] isKindOfClass:[photoCollectionViewCell class]]) {
   photoCollectionViewCell *cell = array[i];
   cell.deleteBtn.hidden = YES;
   if (cell.tag == 999999) {
    cell.photoImage.image = [UIImage imageNamed:@"plus"];
   }
   // 晃动动画
   [self animationViewCell:cell];
  }
 }
}
// 晃动动画
-(void)animationViewCell:(photoCollectionViewCell *)cell
{
 //摇摆
 if (wobble){
  cell.transform = CGAffineTransformMakeRotation(-0.1);
  [UIView animateWithDuration:0.08
        delay:0.0
       options:UIViewAnimationOptionRepeat|UIViewAnimationOptionAutoreverse|UIViewAnimationOptionAllowUserInteraction|UIViewAnimationOptionCurveLinear
       animations:^{
        cell.transform = CGAffineTransformMakeRotation(0.1);
       } completion:nil];
 }
 else{
  [UIView animateWithDuration:0.25
        delay:0.0
       options:UIViewAnimationOptionAllowUserInteraction|UIViewAnimationOptionBeginFromCurrentState|UIViewAnimationOptionCurveEaseOut
       animations:^{
        cell.transform = CGAffineTransformIdentity;
       } completion:nil];
 }
}
#pragma -mark -UIActionSheetDelegate
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
 if (buttonIndex == 0) {
  [self openCamera];
 }else if(buttonIndex == 1) {
  [self openPics];
 }
}
#pragma -mark -UIAlertViewDelegate
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
 if (buttonIndex == 1) {
  [dataArray removeObjectAtIndex:deleteIndex];
  NSIndexPath *path = [NSIndexPath indexPathForRow:deleteIndex inSection:0];
  [_collectionView deleteItemsAtIndexPaths:@[path]];
  // 如果删除完,则取消编辑
  if (dataArray.count == 1) {
   [self cancelWobble];
  }
  // 没有删除完,执行晃动动画
  else
  {
   [self longPressedAction];
  }
 }
}
#pragma -mark -camera
// 打开相机
- (void)openCamera {
 if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])
 {
  if (_imagePicker == nil) {
   _imagePicker = [[UIImagePickerController alloc] init];
  }
  _imagePicker.delegate = (id)self;
  _imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
  _imagePicker.showsCameraControls = YES;
  _imagePicker.allowsEditing = YES;
  [self.navigationController presentViewController:_imagePicker animated:YES completion:nil];
 }
}
// 打开相册
- (void)openPics {
 if (_imagePicker == nil) {
  _imagePicker = [[UIImagePickerController alloc] init];
 }
 _imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
 _imagePicker.allowsEditing = YES;
 _imagePicker.delegate = (id)self;
 [self presentViewController:_imagePicker animated:YES completion:NULL];
}
// 选中照片
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
 NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];
 [_imagePicker dismissViewControllerAnimated:YES completion:NULL];
 _imagePicker = nil;
 // 判断获取类型:图片
 if ([mediaType isEqualToString:@"public.image"]){
  UIImage *theImage = nil;
  // 判断,图片是否允许修改
  if ([picker allowsEditing]){
   //获取用户编辑之后的图像
   theImage = [info objectForKey:UIImagePickerControllerEditedImage];
  } else {
   // 照片的元数据参数
   theImage = [info objectForKey:UIImagePickerControllerOriginalImage] ;
  }
  [dataArray insertObject:theImage atIndex:0];
  NSIndexPath *path = [NSIndexPath indexPathForRow:0 inSection:0];
  [_collectionView insertItemsAtIndexPaths:@[path]];
 }
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
 [picker dismissViewControllerAnimated:YES completion:NULL];
}
// 判断设备是否有摄像头
- (BOOL) isCameraAvailable{
 return [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera];
}
#pragma mark - 相册文件选取相关
// 相册是否可用
- (BOOL) isPhotoLibraryAvailable{
 return [UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypePhotoLibrary];
}
- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
}
@end

photoCollectionViewCell.h

#import <UIKit/UIKit.h>
@interface photoCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIButton *addBtn;
@property (weak, nonatomic) IBOutlet UIImageView *photoImage;
@property (weak, nonatomic) IBOutlet UIButton *deleteBtn;
@end

photoCollectionViewCell.m

#import "photoCollectionViewCell.h"
@implementation photoCollectionViewCell
- (id)initWithFrame:(CGRect)frame
{
 self = [super initWithFrame:frame];
 if (self)
 {
  // 初始化时加载collectionCell.xib文件
  NSArray *arrayOfViews = [[NSBundle mainBundle] loadNibNamed:@"photoCollectionViewCell" owner:self options:nil];
  // 如果路径不存在,return nil
  if (arrayOfViews.count < 1)
  {
   return nil;
  }
  // 如果xib中view不属于UICollectionViewCell类,return nil
  if (![[arrayOfViews objectAtIndex:0] isKindOfClass:[UICollectionViewCell class]])
  {
   return nil;
  }
  // 加载nib
  self = [arrayOfViews objectAtIndex:0];
 }
 return self;
}
- (void)awakeFromNib {
 // Initialization code
}
@end

总结

以上所述是小编给大家介绍的iOS 通过collectionView实现照片删除功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!

(0)

相关推荐

  • iOS中关于Swift UICollectionView横向分页的问题

    下面通过图文并茂的形式给大家介绍UICollectionView横向分页的问题,具体内容详情如下所示: 情况 直接看图 滚前 滚后 已经设置collectionView的isPagingEnabled为true了,可是出现了这种情况,原因就是collectionView的contentSize不够. <UICollectionView: 0x7fc565076000; frame = (0 0; 375 197); clipsToBounds = YES; gestureRecognizers

  • iOS自定义UICollectionViewLayout实现瀑布流布局

    移动端访问不佳,请访问我的个人博客 最近项目中需要用到瀑布流的效果,但是用UICollectionViewFlowLayout又达不到效果,自己动手写了一个瀑布流的layout,下面是我的心路路程 先上效果图与demo地址: 因为是用UICollectionView来实现瀑布流的,决定继承UICollectionViewLayout来自定义一个layout来实现一个简单瀑布流的布局,下面是需要重写的方法: 重写这个属性得出UICollectionView的ContentSize:collecti

  • iOS自定义collectionView实现毛玻璃效果

    先来看看效果图,由于录屏软件不给力,毛玻璃效果不明显,请见谅. 步骤详解: 说下思路,很简单,首先自定义一个collectionView, 重写它的initWithFrame:collectionViewLayout:方法,在这里面做配置,这里用的是AXECollectionView. 与之对应的自定义一个collectionViewCell,在cell里配置操作:设置layer涂层,加载图片等操作,这里用的是AXECollectionViewCell. 最后在需要展示的控制器里调用AXECol

  • iOS UICollectionView刷新时闪屏的解决方法

    在做相册的时候遇到了一个问题,就是UICollectionView刷新的时候会闪屏,网上搜了搜,解决的方法也是挺多,并没有一一尝试,只是存下来做个笔记,来看看遇到的几种方法. 方法一: [UIView performWithoutAnimation:^{ //刷新界面 [self.collectionView reloadData]; }]; 把刷新界面的事件放在这个BLock里就可以了! 方法二 [UIView animateWithDuration:0 animations:^{ [coll

  • iOScollectionView广告无限滚动实例(Swift实现)

    今天公司里的实习生跑过来问我一般App上广告的无限滚动是怎么实现的,刚好很久没写博客了,就决定写下了,尽量帮助那些处于刚学iOS的程序猿. 做一个小demo,大概实现效果如下图所示: 基本实现思路: 1. 在你需要放置无限滚动展示数据的地方把他的数据,在原本的基础上把你要展示的数据扩大三倍.(当然扩大两倍也是可以的,三倍的话,比较好演示) // MARK: - 设置数据源 func collectionView(_ collectionView: UICollectionView, number

  • ios的collection控件的自定义布局实现与设计

    collection控件用来实现界面的各种自定义布局,最常用其作为横向.竖向的布局控件.很早之前,系统对于collection的支持并不是很好.所以自己实现了支持自定义布局.自定义cell的collection控件.自定义的collection可以满足所有的产品特殊需求及动态效果,例如在某些特殊情况下可能需要除选中cell之外的其它cell执行布局动画等.在collection的基础之上,我又实现了支持cell拖动.拖离窗体的tabview控件.本文主要介绍自定义collection的设计与实现

  • IOS collectionViewCell防止复用的两种方法

    IOS collectionViewCell防止复用的两种方法 collectionView 防止cell复用的方法一: //在创建collectionView的时候注册cell(一个分区) UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath]; for (UIView *view in cell.contentV

  • IOS简单实现瀑布流UICollectionView

    UICollectionView 比tableView 灵活,功能也强大很多.系统实现了流式布局,但用处还有很多限制. 要想实现更灵活的布局,就咬重写UICollectionViewLayout. 先看下实现效果: 废话不多说,直接上代码: 先看WaterfallCollectionLayout.m #import "WaterfallCollectionLayout.h" #define colMargin 5 #define colCount 4 #define rolMargin

  • 使用iOS控件UICollectionView生成可拖动的桌面的实例

    一个App受欢迎的程度,一方面来源于它本身为用户提供便捷的功能,另一方面则来源于它的UI.UI是用户体验重要的组成部分,构成UI的的元素恰恰离不开那些看似独立的控件.在开发的过程中,大家对UITableView应该很熟悉吧!确实UITableView在处理数据显示方面有着很强大的功能,例如网红们使用的微博,微信社交软件的聊天界面等等,这种流式布局使用UITableView简直最合适不过了:但毕竟UITableView不是万能的,当需要显示横纵向的数据时它就显得捉襟见肘了,虽然这也难不倒我们程序猿

  • iOS 通过collectionView实现照片删除功能

    一,效果图. 二,工程图. 三,代码. ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController <UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout,UIAlertViewDelegate,UIActionSheetDelegate,UIImagePic

  • iOS开发之tableView实现左滑删除功能

    前言 这几天要实现左划删除的功能,发现网上很多帖子大多出自一人之手,然后都是 copy 的文章,其实都没有那么复杂,只实现一个代理方法就可以了 方法如下 - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITa

  • iOS实现UITableView左滑删除复制即用功能

    开发项目时候需要用到tableview左滑删除,就研究了一下,话不多说直接上代码 //设Cell可编辑 - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { return YES; } //设置删除按钮 -(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRow

  • iOS自定义UITableView实现不同系统下的左滑删除功能详解

    前言 在我们的app开发当中,经常会用到UITableView 的左滑删除的功能,通常的话效果如下 但有时候系统现有的功能并不能完全满足我们的开发需求,这样就需要我们在其现有的功能基础上自定义我们所需要的功能了.下图是在项目中自定义的按钮(只是修改了按钮的frame而已). 然后我就总结了一下根据不同的需求自定义不同的按钮. 一.系统默认左滑删除按钮 如果你对左滑删除按钮的要求不高,仅仅只是实现UITableView上cell的左滑删除功能,那在UITableView的代理方法中添加以下两种方法

  • iOS 多选删除功能附tableViewTips及单选删除

    一.前言 这次分享并记录一下tableView的多选删除,并额外记录一下单选删除及tableView的设置小技巧. 二.想要实现的效果图如下: 1.先上原图 2.然后编辑图如下: 3.编辑步骤: 点击右上角按钮编辑,界面呈现编辑状态底部删除按钮弹出 选择删除cell项,点击右下角删除可删除 点击右上角,退出编辑状态,底部删除按钮退出界面 三.多选删除核心代码 1.设置允许tableView编辑状态下允许多选 _mainTableView.allowsMultipleSelectionDuring

  • 利用iOS实现系统相册大图浏览功能详解

    前言 本文主要给大家介绍了关于iOS实现系统相册大图浏览功能的相关资料,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧. 最终效果图 大图浏览 实现过程 创建两个UICollectionView分别放置大图和缩略图 实现大图和缩略图的联动 实现当前展示的大图对应的缩略图放大效果 实现原理 创建collectionView非常简单,只要正常创建就好,值得注意的是:由于需要当前展示的图片的缩略图始终保持在屏幕中间位置,所以在创建缩略图的collectionView的时候需要对coll

  • 使用objc runtime实现iOS闭环的懒加载功能

    使用objc runtime实现懒加载 地址:AutoPropertyCocoa 懒加载形式如下 - (id)lazyloadProperty{ if(_lazyloadProperty == nil){ _lazyloadProperty = [XClass ...]; } return _lazyloadProperty; } 一般使用宏定义可以轻松完成.但是没有一致性,移植差. 利用objc runtime的动态性实现懒加载可以实现即可增加又可删除功能,也可以避免污染类型.该三方弥补了目前

  • iOS多线程实现多图下载功能

    本文实例为大家分享了iOS多线程实现多图下载功能的具体代码,供大家参考,具体内容如下 一.模型文件代码如下 // XMGAPP.h #import <Foundation/Foundation.h> @interface XMGAPP : NSObject /** APP的名称 */ @property (nonatomic, strong) NSString *name; /** APP的图片的url地址 */ @property (nonatomic, strong) NSString *

  • 使用Bootstrap和Vue实现用户信息的编辑删除功能

    使用Bootstrap实现简单的布局,并结合Vue进行用户信息的编辑删除等功能,代码如下 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>用户信息编辑</title> <link rel="stylesheet" type="text/css" href="bootstrap.min.cs

  • ajax php实现给fckeditor文本编辑器增加图片删除功能

    工作需要需要fck编辑器的服务器浏览加个图片删除的功能,我们利用ajax php实现的有需要的朋友可以参考下. 在fckeditoreditorfilemanagerbrowserdefault文件夹中找到frmresourceslist.html文件,修改代码如下 oListManager.GetFileRowHtml找到这里,下面代码替换原来的代码 复制代码 代码如下: oListManager.GetFileRowHtml = function(fileName, fileUrl, fil

随机推荐