UIKit之UITableView篇

1.UITableViewCell高度計(jì)算

  • Cell 具有固定高度的情況,使用rowHeight;之類的設(shè)置高度
//對于定高需求的表格,強(qiáng)烈建議使用這種方式保證不必要的高度計(jì)算和調(diào)用
self.tableView.rowHeight = 88;
  • Cell具有多種高度的情況的情況奶稠,實(shí)現(xiàn) UITableViewDelegate 中的高度計(jì)算方法
//需要注意的是,實(shí)現(xiàn)了這個(gè)方法后钠导,rowHeight的設(shè)置將無效略水。
//所以,這個(gè)方法適用于具有多種 cell 高度的 UITableView
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { 
   return 88;
}

2.可見cells數(shù)組(即在肉眼看到范圍內(nèi)的cell數(shù)組)

//函數(shù)說明:
NSArray<UITableViewCell*> * visibleCells = self.tableView.visibleCells;

/*********請使用以下方法****/
// 將像素point從view中轉(zhuǎn)換到當(dāng)前視圖中赤赊,返回在當(dāng)前視圖中的像素值
- (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view;
// 將rect由rect所在視圖轉(zhuǎn)換到目標(biāo)視圖view中闯狱,返回在目標(biāo)視圖view中的rect
- (CGRect)convertRect:(CGRect)rect toView:(UIView *)view;
// 將rect從view中轉(zhuǎn)換到當(dāng)前視圖中,返回在當(dāng)前視圖中的rect
- (CGRect)convertRect:(CGRect)rect fromView:(UIView *)view;

事例:(使用場景:點(diǎn)擊一個(gè)cell,需要展開cell以下內(nèi)容抛计,但是需要展開的內(nèi)容在屏幕以外哄孤,需要往上偏移x個(gè)單位)

///展開在屏幕范圍以外的cell,往上移動(dòng)120單位吹截,正確顯示展開的cell
- (void)setUnVisableCellToVisable:(NSInteger)section withExpand:(BOOL)isExapnd{

    //當(dāng)前點(diǎn)擊cell的IndexPath
    NSIndexPath *tempIndex = [NSIndexPath indexPathForRow:0 inSection:section];
    
    //獲取當(dāng)前cell
    UITableViewCell *cell = [_tableView cellForRowAtIndexPath:tempIndex];
    
    //將rect由rect所在視圖轉(zhuǎn)換到目標(biāo)視圖view中瘦陈,返回在目標(biāo)視圖view中的rect
    CGRect cellFrame = [_tableView convertRect:cell.frame toView:self.view];
    
    CGFloat cellHeightAndOrigionY = CGRectGetMinY(cellFrame) + CGRectGetHeight(cellFrame);
    
    CGFloat tableViewHeight = CGRectGetHeight(_tableView.frame)
    
    if ((cellHeightAndOrigionY >=  tableViewHeight) && isExapnd) {
        
        CGPoint contentOffset = _tableView.contentOffset;
        
        if (isExapnd) {
            
            contentOffset.y += 120;
        }
        
        [_tableView setContentOffset:contentOffset animated:YES];
    }
}

3.局部刷新

//刷新第一個(gè)section 第三個(gè)row
 NSIndexPath *tempIndex = [NSIndexPath indexPathForRow:2 inSection:0];
                                                       
 [tableView reloadRowsAtIndexPaths:@[tempIndex] withRowAnimation:UITableViewRowAnimationNone];

4.UIScrollView+UITableView組合應(yīng)用

圖事例.gif
  • 代碼(左右兩邊,為對稱的UITableViewCell)
#define ScreenWidht  [UIScreen mainScreen].bounds.size.width
#define ScreenHeight [UIScreen mainScreen].bounds.size.height
typedef NS_ENUM(NSInteger, ScrollTableViewType) {
    ScrollTableViewTypeDefalut = 0,//
    ScrollTableViewTypeLeft,//滑動(dòng)左邊的 tableView
    ScrollTableViewTypeMiddle,//滑動(dòng)中間的 tableView
    ScrollTableViewTypeRight//滑動(dòng)右邊 tableView
};
@interface ViewController ()

@property (nonatomic,strong) UITableView  *tableView;
@property (nonatomic,strong) UITableView  *tableViewLeft;
@property (nonatomic,strong) UITableView  *tableViewRight;

@property (nonatomic,strong) UIScrollView *scrollViewLeft;
@property (nonatomic,strong) UIScrollView *scrollViewRight;

@property (nonatomic,assign) CGFloat tableViewOriginX;//中間tableview的起始點(diǎn)
@property (nonatomic,assign) CGFloat tableViewWidth;//中間tableView的寬度

@property (nonatomic,assign) BOOL isScrollViewLeft;//是否滑動(dòng)左邊的scrollView
@property (nonatomic,assign) ScrollTableViewType scrollTableViewIndex;

@end

@implementation ViewController

- (void)viewDidLoad {
    
    [super viewDidLoad];
    
    _tableViewWidth = 100;
    
    _tableViewOriginX = (ScreenWidht- _tableViewWidth)/2.0;
    
    _scrollViewLeft = ({
        UIScrollView *scrollView = [[UIScrollView alloc]init];
        scrollView.frame = CGRectMake(0, 64, _tableViewOriginX, ScreenHeight - 64);
        scrollView.contentSize = CGSizeMake(ScreenWidht, ScreenHeight-64);
        scrollView.contentOffset = CGPointMake(scrollView.contentSize.width-_tableViewOriginX, 0);
        scrollView.backgroundColor = [UIColor darkGrayColor];
        scrollView.bounces = NO;
        scrollView.delegate = self;
        [self.view addSubview:scrollView];
        scrollView;
    });
    
    _scrollViewRight = ({
        UIScrollView *scrollView = [[UIScrollView alloc]init];
        scrollView.frame = CGRectMake(_tableViewOriginX+_tableViewWidth, 64, ScreenWidht-(_tableViewOriginX+_tableViewWidth), ScreenHeight - 64);
        scrollView.contentSize = CGSizeMake(ScreenWidht, ScreenHeight-64);
        scrollView.backgroundColor = [UIColor lightGrayColor];
        scrollView.bounces = NO;
        scrollView.delegate = self;
        [self.view addSubview:scrollView];
        scrollView;
    });
    
    _tableView = ({
        UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectZero style:UITableViewStylePlain];
        tableView.frame = CGRectMake(_tableViewOriginX, 64, _tableViewWidth, ScreenHeight - 64);
        [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"_tableView"];
        //tableView.bounces = NO;
        tableView.showsVerticalScrollIndicator = NO;
        tableView.delegate = self;
        tableView.dataSource = self;
        [self.view addSubview:tableView];
        tableView;
    });
    
    _tableViewLeft = ({
        UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectZero style:UITableViewStylePlain];
        tableView.frame = CGRectMake(0, 0, _scrollViewLeft.contentSize.width, _scrollViewLeft.contentSize.height);
        [tableView registerNib:[UINib nibWithNibName:@"LeftTableViewCell"bundle:nil] forCellReuseIdentifier:@"_tableViewLeft"];
        tableView.delegate = self;
        tableView.dataSource = self;
        //tableView.bounces = NO;
        tableView.showsVerticalScrollIndicator = NO;
        [_scrollViewLeft addSubview:tableView];
        tableView;
    });
    
    _tableViewRight = ({
        UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectZero style:UITableViewStylePlain];
        tableView.frame = CGRectMake(0, 0, _scrollViewRight.contentSize.width, _scrollViewRight.contentSize.height);
        [tableView registerNib:[UINib nibWithNibName:@"RightTableViewCell"bundle:nil] forCellReuseIdentifier:@"_tableViewRight"];
        tableView.delegate = self;
        tableView.dataSource = self;
        //tableView.bounces = NO;
        tableView.showsVerticalScrollIndicator = NO;
        [_scrollViewRight addSubview:tableView];
        tableView;
    });
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    
    return 20 ;
}

- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    if (tableView == _tableView) {
        
        UITableViewCell *cell;
        
        cell = [tableView dequeueReusableCellWithIdentifier:@"_tableView"];
        
        cell.textLabel.text = [NSString stringWithFormat:@"中間%@",@(indexPath.row)];
        
        cell.textLabel.textAlignment = NSTextAlignmentCenter;
            
        cell.backgroundColor = [UIColor lightGrayColor];
        
        return cell;
    } else if (tableView == _tableViewLeft) {
        
        LeftTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"_tableViewLeft"];
        
        return cell;
    } else if (tableView == _tableViewRight) {
        
        RightTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"_tableViewRight"];
        
        return cell;
    }
    
    return nil;
}

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

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
    
    //判斷是否為左右滑動(dòng)
    if (scrollView == _scrollViewLeft) {
        
        _isScrollViewLeft = YES;
        
    } else if (scrollView == _scrollViewRight) {
        
        _isScrollViewLeft = NO;
    }
    
    //判斷是否為上下滑動(dòng)
    if (scrollView == _tableViewLeft) {
    
        _scrollTableViewIndex = ScrollTableViewTypeLeft;
    } else if(scrollView == _tableView){

        _scrollTableViewIndex = ScrollTableViewTypeMiddle;
    } else if (scrollView == _tableViewRight) {
    
        _scrollTableViewIndex = ScrollTableViewTypeRight;
    } else {
    
        _scrollTableViewIndex = ScrollTableViewTypeDefalut;
    }
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    
    //左右滑動(dòng)
    if (_isScrollViewLeft) {

        [_scrollViewRight setContentOffset:CGPointMake((ScreenWidht - _scrollViewLeft.contentOffset.x ) - _tableViewOriginX, 0)];
    } else {
        
        [_scrollViewLeft  setContentOffset:CGPointMake((ScreenWidht - _tableViewOriginX) - _scrollViewRight.contentOffset.x, 0)];
    }
    
    //上下滑動(dòng)
    if (_scrollTableViewIndex == ScrollTableViewTypeLeft) {
        
        [_tableView      setContentOffset:CGPointMake(0, _tableViewLeft.contentOffset.y)];
        
        [_tableViewRight setContentOffset:CGPointMake(0, _tableViewLeft.contentOffset.y)];
    } else if (_scrollTableViewIndex == ScrollTableViewTypeMiddle) {
    
        [_tableViewLeft  setContentOffset:CGPointMake(0, _tableView.contentOffset.y)];
        
        [_tableViewRight setContentOffset:CGPointMake(0, _tableView.contentOffset.y)];
    } else if (_scrollTableViewIndex == ScrollTableViewTypeRight) {
        
        [_tableViewLeft setContentOffset:CGPointMake(0, _tableViewRight.contentOffset.y)];
        
        [_tableView     setContentOffset:CGPointMake(0, _tableViewRight.contentOffset.y)];
    }
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末波俄,一起剝皮案震驚了整個(gè)濱河市晨逝,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌弟断,老刑警劉巖咏花,帶你破解...
    沈念sama閱讀 211,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異阀趴,居然都是意外死亡昏翰,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門刘急,熙熙樓的掌柜王于貴愁眉苦臉地迎上來棚菊,“玉大人,你說我怎么就攤上這事叔汁⊥城螅” “怎么了检碗?”我有些...
    開封第一講書人閱讀 157,435評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長码邻。 經(jīng)常有香客問我折剃,道長,這世上最難降的妖魔是什么像屋? 我笑而不...
    開封第一講書人閱讀 56,509評(píng)論 1 284
  • 正文 為了忘掉前任怕犁,我火速辦了婚禮,結(jié)果婚禮上己莺,老公的妹妹穿的比我還像新娘奏甫。我一直安慰自己,他們只是感情好凌受,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評(píng)論 6 386
  • 文/花漫 我一把揭開白布阵子。 她就那樣靜靜地躺著,像睡著了一般胜蛉。 火紅的嫁衣襯著肌膚如雪挠进。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,837評(píng)論 1 290
  • 那天腾么,我揣著相機(jī)與錄音奈梳,去河邊找鬼。 笑死解虱,一個(gè)胖子當(dāng)著我的面吹牛攘须,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播殴泰,決...
    沈念sama閱讀 38,987評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼于宙,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了悍汛?” 一聲冷哼從身側(cè)響起捞魁,我...
    開封第一講書人閱讀 37,730評(píng)論 0 267
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎离咐,沒想到半個(gè)月后谱俭,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,194評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡宵蛀,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評(píng)論 2 327
  • 正文 我和宋清朗相戀三年昆著,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片术陶。...
    茶點(diǎn)故事閱讀 38,664評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡凑懂,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出梧宫,到底是詐尸還是另有隱情接谨,我是刑警寧澤摆碉,帶...
    沈念sama閱讀 34,334評(píng)論 4 330
  • 正文 年R本政府宣布,位于F島的核電站脓豪,受9級(jí)特大地震影響巷帝,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜跑揉,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評(píng)論 3 313
  • 文/蒙蒙 一锅睛、第九天 我趴在偏房一處隱蔽的房頂上張望埠巨。 院中可真熱鬧历谍,春花似錦、人聲如沸辣垒。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽勋桶。三九已至脱衙,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間例驹,已是汗流浹背捐韩。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評(píng)論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留鹃锈,地道東北人荤胁。 一個(gè)月前我還...
    沈念sama閱讀 46,389評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像屎债,于是被迫代替她去往敵國和親仅政。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容

  • UITableViewCell 高度計(jì)算 UITableView 詢問 cell 高度有兩種方式:1.rowHei...
    WeiHing閱讀 4,429評(píng)論 6 16
  • 1盆驹、禁止手機(jī)睡眠[UIApplication sharedApplication].idleTimerDisabl...
    DingGa閱讀 1,116評(píng)論 1 6
  • *7月8日上午 N:Block :跟一個(gè)函數(shù)塊差不多圆丹,會(huì)對里面所有的內(nèi)容的引用計(jì)數(shù)+1,想要解決就用__block...
    炙冰閱讀 2,477評(píng)論 1 14
  • 定義了一些常用的宏躯喇,寫代碼的時(shí)候用起來挺方便的辫封,添加了pch文件,設(shè)置了相對路徑廉丽;設(shè)置pch文件相對路徑的方法:設(shè)...
    SnailLi閱讀 1,677評(píng)論 0 1
  • 王櫟涵閱讀 435評(píng)論 24 13