iOS之UITableViewCell左右滑動效果

來源:互聯網
上載者:User

標籤:

首先在 UITableViewCell.h 中聲明一個代理

@protocol UITableViewCellSlideDelegate <UITableViewDelegate>@optional- (void)tableView:(UITableView *)tableView slideToRightWithIndexPath:(NSIndexPath *)indexPath;- (void)tableView:(UITableView *)tableView slideToLeftWithIndexPath:(NSIndexPath *)indexPath;@end

然後在 UITableViewCell.m 中 建立一個手勢 UIPanGestureRecognizer,因為我們左右滑動的時候必須依賴拖動手勢,然後在 UIPanGestureRecognizer 的代理方法中進行判斷到底是左滑還是右滑

static const CGFloat kSlideWidth = 80;static const CGFloat kSlideWidthDelta = 0.08;#pragma mark - UIGestureRecognizerDelegate- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer{    if (self.panGestureRecognizer == gestureRecognizer) {        CGPoint point = [self.panGestureRecognizer translationInView:self];        return fabs(point.x) > fabs(point.y);    } else {        return NO;    }}#pragma mark - Event Handler- (void)panGestureRecognizerHandler:(UIPanGestureRecognizer *)gestureRecognizer{    switch (gestureRecognizer.state) {        case UIGestureRecognizerStateChanged: {            CGPoint point = [gestureRecognizer translationInView:self];            CGFloat offset = point.x;            if (offset >= kSlideWidth) {                offset = kSlideWidth + (offset - kSlideWidth) * kSlideWidthDelta;                if (_parent.delegate && [_parent.delegate respondsToSelector:@selector(tableView:slideToRightWithIndexPath:)]) {                    id<UITableViewCellSlideDelegate> delgate = (id<UITableViewCellSlideDelegate>)_parent.delegate;                    [delgate tableView:_parent slideToRightWithIndexPath:_indexPath];                }            } else if (offset <= -kSlideWidth) {                offset = -kSlideWidth + (offset + kSlideWidth) * kSlideWidthDelta;                if (_parent.delegate && [_parent.delegate respondsToSelector:@selector(tableView:slideToLeftWithIndexPath:)]) {                    id<UITableViewCellSlideDelegate> delgate = (id<UITableViewCellSlideDelegate>)_parent.delegate;                    [delgate tableView:_parent slideToLeftWithIndexPath:_indexPath];                }            }            self.contentView.center = CGPointMake(self.center.x + offset,                                                  self.contentView.center.y);            break;        }        default:            break;    }}

最後就可以在外部調用代理方法進行相關的操作了

#pragma mark - UITableViewCellSlideDelegate- (void)tableView:(UITableView *)tableView slideToRightWithIndexPath:(NSIndexPath *)indexPath{    NSLog(@"向右滑動");}- (void)tableView:(UITableView *)tableView slideToLeftWithIndexPath:(NSIndexPath *)indexPath{    NSLog(@"向左滑動");}

iOS之UITableViewCell左右滑動效果

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.