iOS - TableView中的骚操作

目录:
1.长按cell响应事件
2.删除某一个cell(UITableview 长按删除)
3.点击缩放cell(伸缩)(放大和缩小)

1.长按删除

1.重写cell类型继承于UITableviewcell

#import 

//协议(需要上层视图控制器操作的时候可以使用,以下是以删除cell为事例)
@protocol NewTableViewCellDelegate

-(void)deleteCell;

@end

@interface NewTableViewCell : UITableViewCell//消息界面显示的cell

//@property (strong, nonatomic) UIImageView *headImageView;

@property id delegate;

@end
#import "NewTableViewCell.h"

@implementation NewTableViewCell

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    
    if ([super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        self.backgroundColor = [UIColor whiteColor];
    }
    return self;
}

//让cell能成为第一响应者来响应事件
- (BOOL)canBecomeFirstResponder {
    return YES;
}

//为cell增加菜单栏选择,以下包括自定义菜单栏
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
//这些是UIMenuItem里面自带的操作方法(注意:需要显示什么就return yes;不需要显示的return no;
/*以下是列表:
//cut: // 剪切
copy: // 拷贝
select: // 选择
selectAll: // 全选
paste: // 粘贴
delete: // 删除
_promptForReplace: // Replace...
_transliterateChinese: // 简<=>繁
_showTextStyleOptions: // B/U
_define: // Define
_addShortcut: // Learn...
_accessibilitySpeak: // Speak
_accessibilitySpeakLanguageSelection: // Speak...
_accessibilityPauseSpeaking: // Pause
_share: // 共享...
makeTextWritingDirectionRightToLeft: // 往右缩进
makeTextWritingDirectionLeftToRight: // 往左缩进
*/

//    if (action == @selector(delete:) || action == @selector(copy:) || action == @selector(paste:) || action == @selector(cut:)) {
//        return YES;
//    }
    

//如果有需要也可以在这里设置弹出来的标题,前提是不能是UIMenuItem里面自带的东西
//    [((UIMenuController *)sender).menuItems.firstObject setTitle:@"zhang"];
    
    if (action == @selector(myDelete:)) {
        return YES;
    }

    //除了自己需要显示的返回yes,其他的全部返回no不显示;
    return NO;
}

//点击自定义菜单栏响应的自定义方法
- (void)myDelete:(UIMenuController *)menu
{
    NSLog(@"myDelete");
    [self resignFirstResponder];
    [self.delegate deleteCell];
}

//点击delete按钮响应的方法
- (void)delete:(UIMenuController *)menu
{
    NSLog(@"delete");
    [self resignFirstResponder];
    [self.delegate deleteCell];
}

2.tableview的数据源协议和代理协议方法

#pragma mark - tableView Delegate

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 81 *ScaleWidth;
}

#pragma mark - tableview datasoure

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return self.data.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    static NSString *cellIdentifier1=@"cell1";
//使用重用机制的初始化
//    NewTableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier1];
//    if (cell == nil) {
//        cell = [[NewTableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier1];
//    }

//不使用cell的重用机制的初始化
    NewTableViewCell *cell = [[NewTableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier1];

    //如果需要用到代理的话这里的self必须要遵守刚才定义的协议(NewTableViewCellDelegate)
    cell.delegate = self;

    //添加长按的手势
    UILongPressGestureRecognizer *longPressGR = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPressGR:)];
    //设定最小的长按时间 按不够这个时间不响应手势
    longPressGR.minimumPressDuration = 0.5;
    [cell addGestureRecognizer:longPressGR];

    return cell;
}

3.长按响应的方法实现

-(void)longPressGR:(UILongPressGestureRecognizer *)lpGR{
    
    //UIMenuController选择框设置
    //如果这里不设置那么只会显示UIMenuItem中本来带有的菜单项
    //(注:这里的self.menuVc的属性是UIMenuController类的对象)
    UIMenuItem *item1 = [[UIMenuItem alloc] initWithTitle:@"my删除" action:@selector(myDelete:)];
    self.menuVc.menuItems = @[item1];
    
    //    获取长按手势发生的位置
    CGPoint point = [lpGR locationInView:self.tableView];

    // 这里可以获取我们在哪个cell上长按
    //(注:这里的self.index属性是NSIndexPath类对象)
    self.index = [self.tableView indexPathForRowAtPoint:point]; 

    //获取长按手势发生在哪一个对象上,并让他成为第一响应者
    [lpGR.view becomeFirstResponder];

    //    UIMenuController *menuVc = [[UIMenuController alloc]init];//不能在这里初始化,不然会导致内存泄漏
    
    //设置菜单栏显示的位置
    [self.menuVc setTargetRect:lpGR.view.frame inView:lpGR.view.superview];
    
    //如果还在显示那就不初始化,不然菜单栏会一直闪
    
    if (self.menuVc.isMenuVisible)return;
    
    //显示菜单栏
    [self.menuVc setMenuVisible:YES animated:YES];
    
     
//手势开始的状态
//    if (lpGR.state == UIGestureRecognizerStateBegan) {

//    }

//手势结束的状态
//    if (lpGR.state == UIGestureRecognizerStateEnded){

}

4.自定义协议的代理方法的实现

#pragma mark - newtableViewCell delegate
//删除cell的方法
-(void)deleteCell{
    
    //删除对应cell,手动管理tableView的data数据源(即cell和section的个数)先删除数据再删除对应的cell,不然会导致崩溃
    [[NIMSDK sharedSDK].conversationManager deleteRecentSession:self.data[self.index.row]];
    [self.allRecentSessions removeObjectAtIndex:self.index.row];
    [self.tableView deleteRowsAtIndexPaths:@[self.index] withRowAnimation:UITableViewRowAnimationRight];
    
}

2.点击cell,使得cell放大和缩小(带动画)

#pragma mark - tableview datasoure

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    if (self.listData) {
        return self.listData.count;
    }
    return 0;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    static NSString *cellIdentifier1=@"cell1";
//    dealViewTableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier1];
//    if (cell == nil) {
//        cell = [[dealViewTableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier1];
//    }

//这里一定不能使用tableviewcell的重用机制
    dealViewTableViewCell *cell = [[dealViewTableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier1];

//如果在点击放大之后的cell需要显示不同的内容,为了能在cell消失在视野中的时候仍然能保持正确的状态,重新设置cell的参数。
//(通俗来说就是我发现在列表上啦或者下拉的时候cell消失的时候会重新调用这个方法)
//self.listData[indexPath.row].isOpen属性是数据数组中用于记录cell是否被打开即时候是放大的状态

//    if (self.listData[indexPath.row].isOpen) {
//
//        cell.imageButton.hidden = NO;
//        cell.moreButton.hidden = YES;

//    }else{
//        cell.imageButton.hidden = YES;
//            cell.moreButton.hidden = NO;
//    }

    return cell;
}
#pragma mark - tableView Delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    //(注:self.selectIndexPath属性是self的NSIndexPath类对象用于记录是哪一个cell被点击了)
    self.selectIndexPath = indexPath;
    //动画刷新cell
    [tableView beginUpdates];
    [tableView endUpdates];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
        //点击放大到的实现
        if (self.selectIndexPath != nil && self.selectIndexPath == indexPath) {
            NewTableViewCell *cell = (NewTableViewCell *)[tableView cellForRowAtIndexPath:indexPath];

            if (self.listData[indexPath.row].isOpen) {
                self.listData[indexPath.row].isOpen = NO;
                //cell.imageButton.hidden = YES;
                
            }else{
                self.listData[indexPath.row].isOpen = YES;
               // cell.imageButton.hidden = NO;
                //cell.moreButton.hidden = YES;
            }
            self.selectIndexPath = nil;
        }
        
        //根据不同的状态返回cell的高度
        if (self.listData[indexPath.row].isOpen) {
            return 200;
        }else{
            return 100;
        }

你可能感兴趣的:(iOS - TableView中的骚操作)