需求:當(dāng)點(diǎn)擊標(biāo)題欄的標(biāo)題時(shí)盹沈,tableView跳轉(zhuǎn)到相應(yīng)的控制器
分析:其實(shí)就是控制scrollview的contentOffset
具體分析:
(1)將UIScrollView添加到精華控制器的view上
(2)將子控制器view添加到UIScrollView上,但是不要一次全部加載進(jìn)來
解決:即先初始化子控制器虚汛,在往UIScrollView添加子控制器的view
相關(guān)問題:
(1)
問題:有時(shí)tableView的分割線會(huì)消失兢孝,右邊出現(xiàn)藍(lán)色分割線
原因:模擬器的問題祝懂,屏幕小的時(shí)候會(huì)有匣屡,放大就不見了
(2)
問題:將tableView添加到scrollview上姜凄,scrollview會(huì)自動(dòng)在上方空出64的距離
原因:2個(gè)
第一個(gè)原因: 不是所有的控制器frame的x找默,y值都是0盒使。
-
UIViewController.view.frame
:
(origin = (x = 0, y = 0), size = (width = 375, height = 667))
-
UITableViewController.view.frame
:
(origin = (x = 0, y = 20), size = (width = 375, height = 667))
解決:要將子控制器的y值設(shè)為0崩掘,但是這樣提上去,下面就會(huì)少20少办,故還要設(shè)置子控制器的高度苞慢。
childView.frame = CGRectMake(index * self.scrollView.xmg_width,0, self.scrollView.xmg_width, self.scrollView.xmg_height);
第二個(gè)原因:scrollview自己會(huì)自動(dòng)留出44的內(nèi)邊距(為導(dǎo)航條)。
解決:讓tableView占據(jù)scrollview全屏英妓,不允許自動(dòng)修改scrollview的內(nèi)邊距
self.automaticallyAdjustsScrollViewInsets = NO;
(3)設(shè)置scrollview分頁
scrollView.pagingEnabled = YES;
(4)
問題:設(shè)置標(biāo)題欄和tabBar都有穿透效果(cell的全屏穿透效果)
- tableView占據(jù)整個(gè)屏幕
- 設(shè)置tableView的內(nèi)邊距挽放,防止當(dāng)cell向下拽時(shí),彈回被導(dǎo)航欄或tabBar遮擋
self.tableView.contentInset = UIEdgeInsetsMake(64 + 35, 0, 49, 0);
(5)
問題:當(dāng)拖到下一個(gè)控制器時(shí)鞋拟,標(biāo)題按鈕相對(duì)應(yīng)的也要移動(dòng)
解決:監(jiān)聽scrollview的滑動(dòng)骂维,如何監(jiān)聽?
- 成為scrollview的代理
- 代理方法:
- (void)scrollViewDidEndDecelerating:
滑動(dòng)完停穩(wěn)后調(diào)用
-(void)scrollViewDidScroll:
只要滑動(dòng)一點(diǎn)點(diǎn)就調(diào)用
-(void)scrollViewDidEndDragging:
當(dāng)用戶松開scrollview贺纲,拖拽結(jié)束調(diào)用
問題:scrollView停穩(wěn)后航闺,如何知道對(duì)應(yīng)的標(biāo)題按鈕?
解決:先獲得標(biāo)題按鈕的索引(index)
index = scrollview的偏移量 / scrollview的寬度
(6) 在創(chuàng)建標(biāo)題按鈕時(shí)猴誊,給按鈕綁定tag潦刃,方便通過tag取出子控件。
(7)
問題:用戶一直向上滑動(dòng)tableview懈叹,滑動(dòng)到最后乖杠,想回到最開始
解決:蘋果自帶的功能:點(diǎn)擊狀態(tài)欄,就會(huì)回到最前面澄成,這是ScrollView的特性胧洒,但是在這里并不起作用畏吓,為什么呢?
原因:ScrollViewToTop這個(gè)屬性沒起作用卫漫,這個(gè)功能有效的前提是只有一個(gè)子控制器的這個(gè)屬性是YES菲饼,其余的是NO才可以。
例子:有4個(gè)子控制器 ,這樣這個(gè)功能才會(huì)有效
S1 ........ ScrollViewToTop.........NO
S2 ........ ScrollViewToTop.........NO
S3 ........ ScrollViewToTop.........NO
S4 ........ ScrollViewToTop.........YES
解決: 設(shè)置index位置對(duì)應(yīng)的tableView.scrollsToTop = YES列赎, 其他都設(shè)置為NO
代碼:
#import "BSEssenceController.h"
#import "UIBarButtonItem+BSExtension.h"
#import "BSTagController.h"
#import "BSAllTableViewController.h"
#import "BSVideoTableViewController.h"
#import "BSPictureTableViewController.h"
#import "BSWordTableViewController.h"
#import "BSVoiceTableViewController.h"
#import "BSTitleButton.h"
@interface BSEssenceController () <UIScrollViewDelegate>
/** 標(biāo)題欄*/
@property (nonatomic ,weak) UIView *titleView;
/** 上一次點(diǎn)擊的按鈕*/
@property (nonatomic ,weak) BSTitleButton *previousBtn;
/** 下劃線*/
@property (nonatomic ,weak) UIView *titleUnderLine;
/** scrollview*/
@property (nonatomic ,weak) UIScrollView *scrollView;
@end
@implementation BSEssenceController
- (void)viewDidLoad {
[super viewDidLoad];
// 初始化子控制器
[self setupChildControllers];
// 導(dǎo)航條
[self setupNav];
// scrollView
[self setupScrollView];
// 標(biāo)題欄
[self setupTitleView];
// 添加第0個(gè)控制器的view
[self addChildViewToScrollView:0];
}
/**
* 初始化子控制器
*/
- (void)setupChildControllers
{
[self addChildViewController:[[BSAllTableViewController alloc] init]];
[self addChildViewController:[[BSWordTableViewController alloc] init]];
[self addChildViewController:[[BSVideoTableViewController alloc] init]];
[self addChildViewController:[[BSPictureTableViewController alloc] init]];
[self addChildViewController:[[BSVoiceTableViewController alloc] init]];
}
/**
* ScrollView
*/
- (void)setupScrollView
{
// 不允許自動(dòng)修改UIScrollView的內(nèi)邊距
self.automaticallyAdjustsScrollViewInsets = NO;
UIScrollView *scrollView = [[UIScrollView alloc] init];
scrollView.frame = self.view.bounds;
scrollView.backgroundColor = [UIColor blueColor];
scrollView.delegate = self;
scrollView.pagingEnabled = YES;
scrollView.scrollsToTop = NO; // 點(diǎn)擊狀態(tài)欄時(shí)宏悦,這個(gè)scrollView不會(huì)滾動(dòng)到最頂部
[self.view addSubview:scrollView];
self.scrollView = scrollView;
// 添加自控制器view
NSUInteger count = self.childViewControllers.count;
scrollView.contentSize = CGSizeMake(count * scrollView.xmg_width, 0);
}
/**
* 標(biāo)題欄
*/
- (void)setupTitleView
{
// UIView
UIView *titleView = [[UIView alloc] initWithFrame:CGRectMake(0, 44+20, self.view.xmg_width, 35)];
titleView.backgroundColor = [UIColor greenColor];
[self.view addSubview:titleView];
self.titleView = titleView;
// 標(biāo)題按鈕
[self setupTitleButtons];
// 標(biāo)題下劃線
[self setupTitleUnderLine];
}
/**
* 標(biāo)題欄按鈕
*/
- (void)setupTitleButtons
{
// 文字
NSArray *titles = @[@"全部",@"視頻",@"聲音",@"圖片",@"段子"];
NSUInteger count = titles.count;
for (NSUInteger i = 0; i < count; i++) {
BSTitleButton *titleBtn = [[BSTitleButton alloc] init];
titleBtn.tag = i;
// frame
CGFloat titleBtnW = self.titleView.xmg_width / count;
CGFloat titleBtnH = self.titleView.xmg_height;
titleBtn.frame = CGRectMake(i * titleBtnW, 0, titleBtnW, titleBtnH);
// titleBtn.backgroundColor = BSRandomColor;
[titleBtn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
// 將文字添加到對(duì)應(yīng)btn上
[titleBtn setTitle:titles[i] forState:UIControlStateNormal];
[self.titleView addSubview:titleBtn];
}
}
/**
* 標(biāo)題欄下劃線
*/
- (void)setupTitleUnderLine
{
BSTitleButton *firstbtn = self.titleView.subviews.firstObject;
// 下劃線
UIView *line = [[UIView alloc] init];
line.xmg_height = 2;
line.xmg_y = self.titleView.xmg_height - line.xmg_height;
line.backgroundColor = [firstbtn titleColorForState:UIControlStateSelected];
[self.titleView addSubview:line];
self.titleUnderLine = line;
// 第一個(gè)按鈕狀態(tài)
firstbtn.selected = YES;
self.previousBtn = firstbtn;
[firstbtn.titleLabel sizeToFit]; // 讓label根據(jù)文字內(nèi)容計(jì)算尺寸
self.titleUnderLine.xmg_width = firstbtn.titleLabel.xmg_width;
self.titleUnderLine.xmg_centerX = firstbtn.xmg_centerX;
}
#pragma mark 監(jiān)聽
-(void)btnClick:(BSTitleButton *)button
{
// 切換按鈕狀態(tài)
self.previousBtn.selected = NO;
button.selected = YES;
self.previousBtn = button;
NSUInteger index = button.tag;
// 下劃線動(dòng)畫
[UIView animateWithDuration:0.25 animations:^{
// 處理下劃線
self.titleUnderLine.xmg_width = button.titleLabel.xmg_width;
self.titleUnderLine.xmg_centerX = button.xmg_centerX;
// 滾動(dòng)scrollView
CGFloat offsetX = index * self.scrollView.xmg_width;
self.scrollView.contentOffset = CGPointMake(offsetX, self.scrollView.xmg_y);
} completion:^(BOOL finished) {
// 添加子控制器的view
[self addChildViewToScrollView:index];
}];
// 設(shè)置index位置對(duì)應(yīng)的tableView.scrollsToTop = YES, 其他都設(shè)置為NO
for (NSUInteger i = 0; i < self.childViewControllers.count; i++) {
// 如果view還沒有被創(chuàng)建包吝,就不用去處理
UIViewController *childVC = self.childViewControllers[i];
if (!childVC.isViewLoaded) return;
UIScrollView *scrollView = (UIScrollView *)childVC.view;
// 判斷scrollView是不是UIScrollView類型饼煞,不是就跳過
if (![scrollView isKindOfClass:[UIScrollView class]]) continue;
// 當(dāng)控制器【i】和按鈕【tag】一致時(shí),才設(shè)置诗越。
scrollView.scrollsToTop = (i == index);
}
}
}
#pragma mark - <UIScrollViewDelegate>
/**
* 監(jiān)聽滾動(dòng)砖瞧,獲得索引(停穩(wěn)后調(diào)用)
*/
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
NSUInteger index = scrollView.contentOffset.x / scrollView.xmg_width;
// 點(diǎn)擊對(duì)應(yīng)的標(biāo)題按鈕
BSTitleButton *titleButton = self.titleView.subviews[index];
[self btnClick:titleButton];
}
/**
* 根據(jù)索引,添加對(duì)應(yīng)的view
*/
- (void)addChildViewToScrollView : (NSUInteger)index;
{
//取出索引對(duì)應(yīng)的控制器
UIViewController *childVC = self.childViewControllers[index];
// 如果view已經(jīng)加載過嚷狞,就直接返回
if (childVC.isViewLoaded) return;
// 去除index對(duì)應(yīng)的view
UIView *childView = childVC.view;
childView.frame = CGRectMake(index * self.scrollView.xmg_width,0, self.scrollView.xmg_width, self.scrollView.xmg_height);
[self.scrollView addSubview:childView];
}