UITableView的分类 滚动到底部 类似斗鱼点击查看底部消息


//
//  UITableView+scrollToBottom.h
//  yunxinDemo
//
//  Created by 刘小二 on 16/7/13.
//  Copyright © 2016年 刘小二. All rights reserved.
//  UITableView滚动到底部的方法

#import <UIKit/UIKit.h>

@interface UITableView (STScrollToBottom)

/**
 *  *  滚动到底部  类似QQ或者聊天室 滚动到底部 比如像斗鱼点击底部有消息
 *
 *  @param animated 是否有动画
 */
- (void)sTScrollToBottom:(BOOL)animated;

@end




//
//  UITableView+scrollToBottom.m
//  yunxinDemo
//
//  Created by 刘小二 on 16/7/13.
//  Copyright © 2016年 刘小二. All rights reserved.
//

#import "UITableView+STScrollToBottom.h"

@implementation UITableView (STScrollToBottom)

- (void)sTScrollToBottom:(BOOL)animated {

    if (self.contentSize.height + self.contentInset.top > self.frame.size.height) {
    
        [self setContentOffset:CGPointMake(0, self.contentSize.height  - self.frame.size.height) animated:animated];
    }
    
}

@end

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容