解决iOS 加在UIScrollView上的UITableView滑动手势冲突问题办法

在UITableView里面实现cell的左滑删除功能是挺简单的,一般大家都会做。但是,如果把UITableView加在UIScrollView上的时候,就会产生一系列的问题。
首先阐明是因为UITableView列表太宽,超出了屏幕的宽度,所以只好加在UIScrollView上,控制UIScrollView的contentSize实现列表的左右滑动。

一般我们的用户体验都是希望表格是紧贴屏幕边框,不让用户看到屏幕多余出来的部分,这时候就要把UIScrollView的属性bounces给关闭,设置为NO,也就是所谓的弹簧效果。
下面我们来说说把UITableView加在UIScrollView上的时候,产生的问题:

有些项目要求给UITableView做左滑删除功能,但是这个UITableView列表是加在UIScrollView上的,这时候如果你向左滑动,你会发现没法看到左滑出来的删除按钮,但是也有时候会出来,我想可能是这时候的手势滑动响应在了UITableView身上,这就是滑动手势冲突的问题。经过一番查阅资料,终于找到了解决办法,办法就是重写UIScrollView类,继承UIScrollView。
MyScrollview.h文件

#import <UIKit/UIKit.h>
 
@interface MyScrollview : UIScrollView<UIGestureRecognizerDelegate>
 
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer;
 
@end
MyScrollview.m文件

#import "MyScrollview.h"
 
@implementation MyScrollview
 
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
    if (gestureRecognizer.state != 0) {
        return YES;
    } else {
        return NO;
    }
}
 
@end
接下来就可以在主界面ViewController里导入#import “MyScrollview.h”,使用MyScrollview代替UIScrollView。
附上我写的一个小demo代码:

#import "ViewController.h"
#import "sideslipTableViewCell.h"
#import "MyScrollview.h"
 
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate,UIGestureRecognizerDelegate>{
    UITableView *sideslipTableView;
    NSMutableArray *dataArray;
    MyScrollview *mainScrollView;
    
}
 
@end
 
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self initUI];
    dataArray = [NSMutableArray arrayWithArray: @[@"1111",@"2222",@"3333",@"4444",@"5555",@"6666",@"7777",@"8888",@"9999"]];
}
#pragma mark - 初始化UI
- (void)initUI{
    self.view.backgroundColor = RGB(242, 242, 247);
    self.automaticallyAdjustsScrollViewInsets = NO;
    mainScrollView = [[MyScrollview alloc] initWithFrame:CGRectMake(0, 44 + 10, kScreenWidth, kScreenHeight - 44 - 10)];
    mainScrollView.bounces = NO;
    mainScrollView.delegate = self;
    [mainScrollView setDelaysContentTouches:NO];
    [mainScrollView setCanCancelContentTouches:NO];
    [self.view addSubview:mainScrollView];
    
    sideslipTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 60, 440, kScreenHeight - 60) style:UITableViewStylePlain];
    sideslipTableView.backgroundColor = [UIColor clearColor];
    sideslipTableView.delegate = self;
    sideslipTableView.dataSource = self;
    sideslipTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    [mainScrollView addSubview:sideslipTableView];
    
    mainScrollView.contentSize = CGSizeMake(440, 0);
}
 
#pragma mark - 行
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return dataArray.count;
}
 
#pragma mark - 行高
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 46;
}
 
#pragma mark - cell内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *indefier = @"cell";
    sideslipTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:indefier];
    if (!cell) {
        cell = [[sideslipTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:indefier];
    }
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.lable.text = dataArray[indexPath.row];
    return cell;
}
 
//先要设Cell可编辑
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}
 
//定义编辑样式
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellEditingStyleDelete;
}
 
//进入编辑模式,按下出现的编辑按钮后,进行删除操作
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        [dataArray removeObjectAtIndex:indexPath.row];
        // Delete the row from the data source.
        [sideslipTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }
}
 
//修改编辑按钮文字
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return @"删除";
}
 
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
 
@end
这里实现的是左滑删除的功能,如果你需要实现左滑出现多个按钮,如:删除和关闭,将上面的方法- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath 注释掉,然后实现下面的方法:

 

- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewRowAction *deleteRoWAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {//title可自已定义
        NSLog(@"点击删除");
    }];
    deleteRoWAction.backgroundColor = RGB(210, 207, 209);
    //此处是iOS8.0以后苹果最新推出的api,UITableViewRowAction,Style是划出的标签颜色等状态的定义,这里也可自行定义
    UITableViewRowAction *editRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"关闭" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        NSLog(@"点击关闭");
    }];
    editRowAction.backgroundColor = [UIColor redColor];//可以定义RowAction的颜色
    return @[editRowAction,deleteRoWAction];//最后返回这俩个RowAction 的数组
}

注意:下面这两个属性必须加上:

[mainScrollView setDelaysContentTouches:NO];
[mainScrollView setCanCancelContentTouches:NO];
// 当前屏幕宽度
#define kScreenWidth [UIScreen mainScreen].bounds.size.width
// 当前屏幕高度
#define kScreenHeight [UIScreen mainScreen].bounds.size.height

时间: 2025-01-01 22:16:20

解决iOS 加在UIScrollView上的UITableView滑动手势冲突问题办法的相关文章

怎么解决ip地址与网络上的其他系统有冲突不能上网

  怎么解决ip地址与网络上的其他系统有冲突不能上网           ip地址与网络上的其他系统有冲突,从而导致无法上网,改怎么解决呢?小编给大家介绍一些解决办法.   方法一 修复本地衔接 1.打开"网上邻居".如图 2.点击左边栏目的"查看网络连接".如图 3.双击鼠标,打开"本地连接",查看本地连接的状态.如图 4.在"本地连接 状态"窗口中,点击"支持".如图 5.接着,点击窗口中的"

微信JSSDK多图片上传并且解决IOS系统上传一直加载的问题

微信多图片上传必须挨个上传,也就是不能并行,得串行: 那么我们可以定义一个如下所示的上传函数: var serverIds = []; function uploadImages(localImagesIds) { if (localImagesIds.length === 0) { $.showPreloader('正在提交数据...'); $('form').submit(); } wx.uploadImage({ localId: localImagesIds[0], // 需要上传的图片

ios-如何解决IOS设备上按钮不不触发的问题???

问题描述 如何解决IOS设备上按钮不不触发的问题??? 不管是 click() 还是 on(click,fuction(){ }) 还是 $(document).on(click,buton,fuction(){ }) 还是加上一个判定 touchend ,IOS设备都不出发按键效果, 除了在HTML中 使用 onclick="方法" 才能触发,请问是为什么,该如何解决?? 使用JS代码,或者用其他插件?? 解决方案 webview有是否允许弹出的,你确定允许弹出?

ios 调用易联 sdk 后 uitableview 点击事件失效

问题描述 ios 调用易联 sdk 后 uitableview 点击事件失效 调用支付 sdk 后 所有界面被覆盖上莫名手势,uitableview 变成双指点击才能选中 cell求解决办法 解决方案 手势冲突.调好手势出现的时机,即时释放就行.如果一个页面有多个手势,需要对手势进行设置. 解决方案二: 我之前也遇到了这个问题,我觉得是手势冲突了,导致cell selected 的时候系统分辨不了到底改执行哪个事件,我的解决办法是,再 return cell 之前,给 每个cell.bounds

OpenGL ES 背面消隐特性在 iOS 设备与模拟器上的运行效果细微差异

OpenGL ES 背面消隐特性在 iOS 设备与模拟器上的运行效果细微差异 太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非商业用途-保持一致"创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS.Android.Html5.Arduino.pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作. 2014-01-09补充 ---------------------

ios开发中uiscrollview里嵌套一个uiscrollview

问题描述 ios开发中uiscrollview里嵌套一个uiscrollview ios开发中uiscrollview里嵌套一个uiscrollview 其中小得scrollview是一个用于放滚动图片的.大得scrollview是用于整个view滚动的..其中还有很多别的view譬如imageview等,现在遇到这样的问题:我滚动大得scrollview,放滚动图片的scroll不跟着动,就一直悬在固定的位置.求解 急呀 解决方案 如果小的uiscrollview是作为subview添加到外部

ios如何实现android qq上面的左右滑动切换界面呢?

问题描述 ios如何实现android qq上面的左右滑动切换界面呢? 这种效果是使用uisegmentcontrol实现的吗? 解决方案 使用UIScrollView应该就可以实现类似这种效果 解决方案二: 你可以参考一下 UISegmentedControl 的文档,内容很全,希望能帮的上你.

aquery ftp imageview-怎样使用Android Aquery加载ftp上的图片(不下载)

问题描述 怎样使用Android Aquery加载ftp上的图片(不下载) 使用Android Aquery加载http路径的图片: aquery.id(ImageView的id).progress(进度条的id).image(图片的http路径);---->可以成功加载 将上面图片的路径换成ftp的路径(带ftp用户名和密码)时就加载不了图片了,该如何解决??? 解决方案 http://download.csdn.net/album/detail/1121

eclipse-安卓资源文件加载不上

问题描述 安卓资源文件加载不上 过程是这样的:今天和同事合代码,我将我的资源文件,布局文件和逻辑代码通过svn上传给他,他和完代码之后,一切正常.但是当运行的时候,当运行到我提交代码的逻辑的时候程序就死了.但是程序在我电脑上运行好好的. 经过排查,问题发现在布局文件上,同事将布局文件改名,后将之前的布局文件替换,程序正常运行.我们的命名eg:hello_hehe;这种结构,即代下划线.重命名的时候我们将下划线去掉,然后就可一加载了.不知到原理和为什么,求大神告知原因. 我用的系统为:ubuntu