以前看見的
印物App
裏的定製模塊的TableView
效果仍是不錯的,因此仿這個App實現了最主要的亮點之一TableView
滾動效果(層疊效果)。cell
中的細節功能是沒有添加的, 須要的話你們能夠本身進行擴展添加!git
首先TableView
與cell
的初始化過程就很少解釋了, 接下來咱們來看看重要的代碼實現:github
cell
中的方法須要用到2個屬性來幫助咱們實現這個方法ui
//底層View
@property (nonatomic, weak)UIView *backGView;
//上層Image
@property (nonatomic, weak)UIImageView *backGImage;
//這個方法是咱們主要實現的核心代碼
/** cell偏移設置*/
- (void)cellOffsetOnTabelView:(UITableView *)tabelView;複製代碼
思路:atom
1.須要規定一個固定的currentLocation
值spa
2.若是cell
的Y
值小於tabelView.contentOffset.y
值(超出 屏幕上面的位置), 須要進行一次處理(中止cell
偏移)code
3.若是cell
的Y
值在currentLocation
範圍內須要進行二次處理(進行cell
偏移)cdn
4.最後cell
的Y
值在currentLocation
下面位置進行三次處理(設置初始值), 以下代碼:get
//cell偏移量實現
- (void)cellOffsetOnTabelView:(UITableView *)tabelView
{
CGFloat currentLocation = tabelView.contentOffset.y + LRLastCellHeight;
//若是須要能夠打開下面這段代碼
#if 0
//下拉禁止 第一個cell往下移動
if (currentLocation < LRCellHeight) return;
#endif
//若是超出規定的位置以 ->「上」
if (self.frame.origin.y < tabelView.contentOffset.y + LRLastCellHeight - LRCellHeight) {
self.backGView.height = LRLastCellHeight;
self.backGView.y = - (LRLastCellHeight - LRCellHeight);
}else if (self.frame.origin.y <= currentlocation="" &&="" self.frame.origin.y="">= tabelView.contentOffset.y) {//cell開始進入規定的位置
//經過絕對值 取出移動的Y值
CGFloat moveY = ABS(self.frame.origin.y - currentLocation) / LRCellHeight * (LRLastCellHeight - LRCellHeight);
//每次進來把當前cell提到最上層
[self.superview bringSubviewToFront:self];
//移動的值 + cell固定高度
self.backGView.height = LRCellHeight + moveY;
//設置偏移量Y值
self.backGView.y = - moveY;
}else{//超出規定的位置以 ->「下」
self.backGView.height = LRCellHeight;
self.backGView.y = 0;
}
}
複製代碼
主要核心代碼實現完, 其餘部分在ViewController
調用就很是簡單了:it
#pragma mark -- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 10; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { LREffectCell * effectCell = [LREffectCell cellFromTableView:tableView]; return effectCell; } - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { //cell 將要顯示時候咱們把數據給它 LREffectCell * effectCell = (LREffectCell *)cell; effectCell.backGImage.image = LRGetImage(indexPath.row); //初始化 -> 調用第一次滾動 [effectCell cellOffsetOnTabelView:_tableView]; } - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return LRCellHeight; } 複製代碼
最後須要監聽scrollView
滾動實現cell偏移:io
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
// [_tableView visibleCells]:獲取表視圖的可見單元格。(可見的視圖)
//遍歷
[[_tableView visibleCells] enumerateObjectsUsingBlock:^(LREffectCell * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
//cell偏移設置
[obj cellOffsetOnTabelView:_tableView];
}];
}複製代碼
效果圖失幀嚴重建議去GitHub - 點擊下載 運行效果會更明顯, 若是喜歡的小夥伴請點一個贊吧,歡迎留言補充與給出不足之處! 原文閱讀