亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 系統 > iOS > 正文

iOS仿熱門話題熱點輪播界面tableView

2020-07-26 03:10:15
字體:
來源:轉載
供稿:網友

廢話不多說直接上代碼:

這個功能應該是挺常見的, 一個tableView到另一個tableView, 類似segment的一個東西, 我把它封裝起來了:

//// ViewController.m////// Created by 高雅馨 on 16/6/3.// Copyright © 2016年 高雅馨. All rights reserved.//#import "DCNavTabBarController.h"#import "HTMacro.h"@interface DCNavTabBarController ()<UIScrollViewDelegate>@property (nonatomic, weak) UIButton *oldBtn;@property(nonatomic,strong) NSArray *VCArr;@property (nonatomic, weak) UIScrollView *contentView;@property (nonatomic, weak) UIScrollView *topBar;@property(nonatomic,assign) CGFloat btnW ;@property (nonatomic, weak) UIView *slider;@end@implementation DCNavTabBarController-(UIColor *)sliderColor{ if(_sliderColor == nil) {  _sliderColor = [UIColor colorWithRed:1.00 green:0.36 blue:0.25 alpha:1.00]; } return _sliderColor;}-(UIColor *)btnTextNomalColor{ if(_btnTextNomalColor == nil) {  _btnTextNomalColor = [UIColor colorWithWhite:0.205 alpha:1.000]; } return _btnTextNomalColor;}-(UIColor *)btnTextSeletedColor{ if(_btnTextSeletedColor == nil) {  _btnTextSeletedColor = [UIColor colorWithRed:1.00 green:0.36 blue:0.25 alpha:1.00]; } return _btnTextSeletedColor;}-(UIColor *)topBarColor{ if(_topBarColor == nil) {  _topBarColor = [UIColor whiteColor]; } return _topBarColor;}-(instancetype)initWithSubViewControllers:(NSArray *)subViewControllers{ if(self = [super init]) {  _VCArr = subViewControllers; } return self;}- (void)viewDidLoad { [super viewDidLoad]; //添加上面的導航條 [self addTopBar]; //添加子控制器 [self addVCView]; //添加滑塊 [self addSliderView];}-(void)addSliderView{ if(self.VCArr.count == 0) return; UIView *slider = [[UIView alloc]initWithFrame:CGRectMake(25,41,self.btnW - 50, 3)]; slider.backgroundColor = self.sliderColor; [self.topBar addSubview:slider]; self.slider = slider;}-(void)addTopBar{ if(self.VCArr.count == 0) return; NSUInteger count = self.VCArr.count; UIScrollView *scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 44)]; scrollView.backgroundColor = self.topBarColor; self.topBar = scrollView; self.topBar.bounces = NO; [self.view addSubview:self.topBar]; if(count <= 5) {   self.btnW = SCREEN_WIDTH / count; } else {   self.btnW = SCREEN_WIDTH / 5.0; } //添加button for (int i = 0; i<count; i++) {  UIViewController *vc = self.VCArr[i];  UIButton *btn = [[UIButton alloc]initWithFrame:CGRectMake(i*self.btnW, 0, self.btnW, 44)];  btn.titleLabel.font = [UIFont systemFontOfSize:15];  btn.titleLabel.numberOfLines = 0;  btn.titleLabel.textAlignment = 1;  btn.tag = 10000+i;  [btn setTitleColor:self.btnTextNomalColor forState:UIControlStateNormal];  [btn setTitleColor:self.btnTextSeletedColor forState:UIControlStateSelected];  [btn setTitle:vc.title forState:UIControlStateNormal];  [btn addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];  [self.topBar addSubview:btn];  if(i == 0)  {   btn.selected = YES;   self.oldBtn = btn;  }} self.topBar.contentSize = CGSizeMake(self.btnW *count, -64);}-(void)addVCView{ UIScrollView *contentView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 0+44, SCREEN_WIDTH, SCREEN_HEIGHT -44)]; self.contentView = contentView; self.contentView.bounces = NO; contentView.delegate = self; contentView.backgroundColor = [UIColor colorWithWhite:0.859 alpha:1.000]; [self.view addSubview:contentView]; NSUInteger count = self.VCArr.count; for (int i=0; i<count; i++) {  UIViewController *vc = self.VCArr[i];  [self addChildViewController:vc];  vc.view.frame = CGRectMake(i*SCREEN_WIDTH, 0, SCREEN_WIDTH, SCREEN_HEIGHT -44);  [contentView addSubview:vc.view]; } contentView.contentSize = CGSizeMake(count*SCREEN_WIDTH, SCREEN_HEIGHT - 44); contentView.pagingEnabled = YES;}-(void)click:(UIButton *)sender{ if(sender.selected) return; self.oldBtn.selected = NO; sender.selected = YES; self.contentView.contentOffset = CGPointMake((sender.tag - 10000) *SCREEN_WIDTH, 0);  self.oldBtn.transform = CGAffineTransformIdentity; self.oldBtn = sender; //判斷導航條是否需要移動 CGFloat maxX = CGRectGetMaxX(self.slider.frame); if(maxX >=SCREEN_WIDTH && sender.tag != self.VCArr.count + 10000 - 1) {  [UIView animateWithDuration:0.3 animations:^{   self.topBar.contentOffset = CGPointMake(maxX - SCREEN_WIDTH + self.btnW, -64);  }]; }else if(maxX < SCREEN_WIDTH) {  [UIView animateWithDuration:0.3 animations:^{   self.topBar.contentOffset = CGPointMake(0, 0);  }]; }}-(void)scrollViewDidScroll:(UIScrollView *)scrollView{ //滑動導航條 self.slider.frame = CGRectMake(scrollView.contentOffset.x / SCREEN_WIDTH *self.btnW + 25 , 41, self.btnW - 50, 3);}//判斷是否切換導航條按鈕的狀態-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{ CGFloat offX = scrollView.contentOffset.x; int tag = (int)(offX /SCREEN_WIDTH + 0.5) + 10000; UIButton *btn = [self.view viewWithTag:tag]; if(tag != self.oldBtn.tag) {  [self click:btn]; }}- (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning];}@end

這個很容易看懂的, 是不是, 就不在這里多解釋.

上面這張呢, 則是把導航欄隱藏, 自定義一個小UIView截取網絡圖片作為導航欄, 又自定義一個大View作為tableView頭視圖.并且我還運用了觀察者注冊消息通知, 代碼有點長, 不過我寫注釋了哦, 可以看懂的.

//// BookMarksViewController.m// HotTopic//// Created by dllo on 16/9/7.// Copyright © 2016年 高雅馨. All rights reserved.//#import "BookMarksViewController.h"#import "HTMacro.h"#import "UIView+Extension.h"#import "BookTableViewCell.h"#import "EssayViewController.h"#import "SubscriberViewController.h"#import "UMSocial.h"#import "DCNavTabBarController.h"#import "UIImageView+WebCache.h"#import "AFNetworking.h"#import "HotTopicsModel.h"#import "TopicModel.h"#import "NodeModel.h"#import "UserModel.h"#import "Source.h"#import "DisposeViewController.h"#import "HeadImageView.h"static CGFloat const headViewHeight = 280;@interface BookMarksViewController ()<UITableViewDelegate,UITableViewDataSource>@property (nonatomic, strong) BookTableViewCell * mainTableView;@property (nonatomic, strong) HeadImageView * headImageView;//頭部圖片@property (nonatomic, strong) UIImageView * avatarImage;@property (nonatomic, strong) UILabel * countentLabel;@property (nonatomic, strong) UIImageView *img;@property (nonatomic, strong) HotTopicsModel *hotTopic;@property (nonatomic, strong) UILabel *titleLabel;@property (nonatomic, assign) BOOL canScroll;@property (nonatomic, assign) BOOL isTopIsCanNotMoveTabView;@property (nonatomic, assign) BOOL isTopIsCanNotMoveTabViewPre;@property (nonatomic, strong) UIView *barView;@property (nonatomic, strong) UILabel *titleText;@end@implementation BookMarksViewController@synthesize mainTableView;- (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self.navigationController setNavigationBarHidden:YES];}- (void)viewDidLoad { [super viewDidLoad];// 這個api功能就是在NavigationController堆棧內的UIViewController可以支持右滑手勢,也就是不用點擊右上角的返回按鈕,輕輕在屏幕左邊一滑,屏幕就會返回,隨著ios設備屏幕的增大,這個小功能讓手指短,拇指大和手殘人士看到了福音。 self.navigationController.interactivePopGestureRecognizer.delegate = (id)self; [self.navigationController setNavigationBarHidden:YES]; self.automaticallyAdjustsScrollViewInsets = NO; [self.view addSubview:self.mainTableView]; // 設置tableView頭視圖 self.mainTableView.tableHeaderView = self.headImageView; // 將導航欄隱藏使其變為透明 [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; // 將導航欄那條黑線隱藏 [self.navigationController.navigationBar setShadowImage:[UIImage new]]; /** 觀察者注冊消息通知 */ [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(leaveTop:) name:@"leaveTop" object:nil]; [self creatView];}// 把導航欄寫成自定義View- (void)creatView { _barView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 64)]; UIButton *backButton = [UIButton buttonWithType:UIButtonTypeCustom]; backButton.frame = CGRectMake(10, 30, 30, 30); [backButton setImage:[UIImage imageNamed:@"backBar"] forState:UIControlStateNormal]; [backButton addTarget:self action:@selector(clickBackBtn:) forControlEvents:UIControlEventTouchUpInside]; UIButton *shareBtn = [UIButton buttonWithType:UIButtonTypeCustom]; shareBtn.frame = CGRectMake(SCREEN_WIDTH - 50, 30, 30, 30); [shareBtn setImage:[UIImage imageNamed:@"shareBar"] forState:UIControlStateNormal]; [shareBtn addTarget:self action:@selector(clickShareBtn:) forControlEvents:UIControlEventTouchUpInside]; _titleText = [[UILabel alloc] initWithFrame:CGRectMake(50, 30, SCREEN_WIDTH - 100, 30)]; _titleText.text = @"收藏夾"; _titleText.textAlignment = 1; _titleText.textColor = [UIColor whiteColor]; // 毛玻璃效果 UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight]; UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur]; effectview.backgroundColor = [UIColor colorWithWhite:0.508 alpha:1.000]; effectview.alpha = 0.65; effectview.frame = CGRectMake(0, 0, SCREEN_WIDTH, 64); [_barView addSubview:effectview]; [_barView addSubview:backButton]; [_barView addSubview:shareBtn]; [_barView addSubview:_titleText]; [self.view addSubview:_barView];}/** * notificationObserver 觀察者 : self * notificationSelector 處理消息的方法名: getUserProfileSuccess * notificationName 消息通知的名字: Notification_GetUserProfileSuccess * notificationSender 消息發送者 : 表示接收哪個發送者的通知,如果第四個參數為nil,接收所有發送者的通知 */- (void)leaveTop:(NSNotification *)notification{ NSDictionary *userInfo = notification.userInfo; NSString *canScroll = userInfo[@"canScroll"]; if ([canScroll isEqualToString:@"1"]) {  _canScroll = YES; }}/** 將自定義View的背景圖設置tableView頭視圖的背景圖*/- (UIImage *)clipImageInOffsetY:(CGFloat)y{ if (_headImageView.image == nil) {  return [UIImage new]; } CGRect rect = CGRectMake(0, y, SCREEN_WIDTH, 64); CGImageRef imageRef = CGImageCreateWithImageInRect([_headImageView.image CGImage], rect); self.blurView.frame = CGRectMake(0, 0, SCREEN_WIDTH, 64); self.blurView.alpha = 0.7; [self.navigationController.navigationBar addSubview:_blurView]; UIImage *thumbScale = [UIImage imageWithCGImage:imageRef]; return thumbScale;}// 用scrollView的偏移量來判斷- (void)scrollViewDidScroll:(UIScrollView *)scrollView{ CGFloat yOffset = scrollView.contentOffset.y; if (yOffset >= _headImageView.height - 64) {  yOffset = _headImageView.height - 64; } UIImage *image = [self clipImageInOffsetY:yOffset]; _barView.backgroundColor = [UIColor colorWithPatternImage:image]; //獲取滾動視圖y值的偏移量 self.navigationController.navigationBar.alpha = (headViewHeight+yOffset)/(headViewHeight-64); CGFloat tabOffsetY = [mainTableView rectForSection:0].origin.y - 64.0f; CGFloat offsetY = scrollView.contentOffset.y; _isTopIsCanNotMoveTabViewPre = _isTopIsCanNotMoveTabView; if (offsetY >= tabOffsetY) {  //不能滑動  scrollView.contentOffset = CGPointMake(0, tabOffsetY);  _isTopIsCanNotMoveTabView = YES;  _titleText.text = self.urlTitle; }else{  //可以滑動  _isTopIsCanNotMoveTabView = NO;  _titleText.text = @"收藏夾"; } if (_isTopIsCanNotMoveTabView != _isTopIsCanNotMoveTabViewPre) {  if (!_isTopIsCanNotMoveTabViewPre && _isTopIsCanNotMoveTabView) {   [[NSNotificationCenter defaultCenter] postNotificationName:@"goTop" object:nil userInfo:@{@"canScroll":@"1"}];   _canScroll = NO;  }  if(_isTopIsCanNotMoveTabViewPre && !_isTopIsCanNotMoveTabView){   if (!_canScroll) {    scrollView.contentOffset = CGPointMake(0, tabOffsetY);   }  } }}// 頭視圖- (UIImageView *)headImageView{ if (_headImageView == nil) {  _headImageView = [[HeadImageView alloc]initWithFrame:CGRectMake(0, 0,SCREEN_WIDTH,headViewHeight)];  _headImageView.userInteractionEnabled = YES;  [_headImageView sd_setImageWithURL:[NSURL URLWithString:self.urlHeadImg] placeholderImage:[UIImage imageNamed:@"touxiang"]completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {  }];  UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];  UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];  effectview.backgroundColor = [UIColor colorWithWhite:0.508 alpha:1.000];  effectview.alpha = 0.7;  effectview.frame = CGRectMake(0, 0, SCREEN_WIDTH, headViewHeight);  [_headImageView addSubview:effectview];  self.navigationController.hidesBarsOnSwipe = NO;  _avatarImage = [[UIImageView alloc] initWithFrame:CGRectMake(20, 20 + 64, SCREEN_WIDTH / 3.3, SCREEN_WIDTH / 3.3)];  [_headImageView addSubview:_avatarImage];  _avatarImage.userInteractionEnabled = YES;  _avatarImage.layer.masksToBounds = YES;  [ _avatarImage sd_setImageWithURL:[NSURL URLWithString:self.urlHeadImg] placeholderImage:[UIImage imageNamed:@"detailViewDefaultMidImage"]];  _countentLabel = [[UILabel alloc] initWithFrame:CGRectMake(_avatarImage.frame.size.width + 40, 20 + 64, SCREEN_WIDTH - (SCREEN_WIDTH / 3 + 20 + 10), _avatarImage.frame.size.height / 4)];  _countentLabel.font = [UIFont systemFontOfSize:15];  _countentLabel.textColor = [UIColor whiteColor];  _countentLabel.lineBreakMode = NSLineBreakByWordWrapping;  _countentLabel.numberOfLines = 0;  _countentLabel.text = self.urlTitle;  [_headImageView addSubview:_countentLabel];  _img = [[UIImageView alloc] initWithFrame:CGRectMake(_countentLabel.frame.origin.x, _countentLabel.frame.size.height + _avatarImage.frame.origin.y + 10, 30, 30)];  _img.layer.cornerRadius = 15;  _img.layer.masksToBounds = YES;  _img.backgroundColor = [UIColor yellowColor];  [_headImageView addSubview:_img];  _titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(_img.frame.size.width + _img.frame.origin.x + 5, _img.frame.origin.y, SCREEN_WIDTH / 1.9 , 30)];  _titleLabel.textColor = [UIColor whiteColor];  _titleLabel.lineBreakMode = NSLineBreakByWordWrapping;  _titleLabel.numberOfLines = 0;  _titleLabel.font = [UIFont systemFontOfSize:12];  [_headImageView addSubview:_titleLabel];  UILabel *contextLabel = [[UILabel alloc] initWithFrame:CGRectMake(_img.frame.origin.x , _img.frame.origin.y + _img.frame.size.height + 6, SCREEN_WIDTH / 2 , SCREEN_WIDTH / 8)];  contextLabel.textColor = [UIColor whiteColor];  contextLabel.text = self.urlContect;  contextLabel.lineBreakMode = NSLineBreakByWordWrapping;  contextLabel.numberOfLines = 0;  contextLabel.font = [UIFont systemFontOfSize:12];  [_headImageView addSubview:contextLabel];  UIButton *takeBtn = [UIButton buttonWithType:UIButtonTypeSystem];  takeBtn.frame = CGRectMake(_img.frame.origin.x - 20 , contextLabel.frame.size.height + contextLabel.frame.origin.y + 10, SCREEN_WIDTH / 4, _avatarImage.frame.size.height / 3.2);  [takeBtn setTitle:@"+ 訂閱" forState:UIControlStateNormal];  [takeBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];  takeBtn.backgroundColor = [UIColor colorWithRed:1.00 green:0.36 blue:0.25 alpha:1.00];  takeBtn.titleLabel.font = [UIFont systemFontOfSize:14];  takeBtn.layer.cornerRadius = 10;  [_headImageView addSubview:takeBtn];  UIButton *contributeBtn = [UIButton buttonWithType:UIButtonTypeSystem];  contributeBtn.frame = CGRectMake(takeBtn.frame.origin.x + takeBtn.frame.size.width + 5, contextLabel.frame.size.height + contextLabel.frame.origin.y + 10, SCREEN_WIDTH / 8, _avatarImage.frame.size.height / 3.2);  [contributeBtn setTitle:@"投稿" forState:UIControlStateNormal];  [contributeBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];  contributeBtn.layer.borderWidth = 1.0;  contributeBtn.titleLabel.font = [UIFont systemFontOfSize:14];  contributeBtn.layer.borderColor = [UIColor whiteColor].CGColor;  contributeBtn.layer.cornerRadius = 5;  [_headImageView addSubview:contributeBtn];  UIButton *manageLabel = [[UIButton alloc] initWithFrame:CGRectMake(contributeBtn.frame.size.width + contributeBtn.frame.origin.x, contributeBtn.frame.origin.y + 5, SCREEN_WIDTH / 5 , 30)];  [manageLabel setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];  [manageLabel setTitle:@"0未處理☞" forState:UIControlStateNormal];  manageLabel.titleLabel.textAlignment = 0;  manageLabel.titleLabel.font = [UIFont systemFontOfSize:12];  [manageLabel addTarget:self action:@selector(clickManageBtn:) forControlEvents:UIControlEventTouchUpInside];  [_headImageView addSubview:manageLabel]; } return _headImageView;}// 大tableView-(UITableView *)mainTableView{ if (mainTableView == nil) {  mainTableView= [[BookTableViewCell alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH,SCREEN_HEIGHT)];  mainTableView.delegate = self;  mainTableView.dataSource=self;  mainTableView.bounces = NO;  mainTableView.separatorStyle = UITableViewCellSeparatorStyleNone;  mainTableView.showsVerticalScrollIndicator = NO;  mainTableView.backgroundColor = [UIColor clearColor];  mainTableView.rowHeight = SCREEN_HEIGHT; } return mainTableView;}#pragma marl -tableDelegate- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ return 1;}- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return 1;}- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ return SCREEN_HEIGHT;}- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil]; cell.selectionStyle = UITableViewCellSelectionStyleNone; //添加pageView [cell.contentView addSubview:self.setPageViewControllers]; return cell;}// 調用兩個小VC-(UIView *)setPageViewControllers{ EssayViewController *essay = [[EssayViewController alloc] init]; essay.urlStr = self.urlStr; essay.title = [NSString stringWithFormat:@"文章/n%@", self.articleCount]; SubscriberViewController *subscribe = [[SubscriberViewController alloc] init]; subscribe.urlStr = self.urlStr; subscribe.title = [NSString stringWithFormat:@"訂閱者/n%@", self.subscriberCount]; NSArray *subViewControllers=@[essay, subscribe]; DCNavTabBarController *tabBarVC = [[DCNavTabBarController alloc]initWithSubViewControllers:subViewControllers]; tabBarVC.view.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT); [self.view addSubview:tabBarVC.view]; [self addChildViewController:tabBarVC]; return tabBarVC.view;}@end

寫到這里, 就完成了, 下面讓我們來看一下成果吧!

是不是特別棒呢, 喜歡的話就來試試看吧!

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
www.日韩不卡电影av| 欧美亚洲伦理www| 国产91色在线|免| 欧洲成人在线视频| 精品视频久久久| 久久久久久国产精品美女| 亚洲自拍小视频免费观看| 亚洲在线免费观看| 久久精品青青大伊人av| 亚洲在线www| 亚洲a∨日韩av高清在线观看| 日韩大陆欧美高清视频区| 国产97在线观看| 亚洲最大福利视频网站| 国产精品∨欧美精品v日韩精品| 亚洲最新av在线| 国产成人免费av| 欧美极品xxxx| 91精品在线播放| 久久不射电影网| 九九精品在线播放| 欧美又大粗又爽又黄大片视频| 91av福利视频| 精品国产一区二区三区久久久狼| 国产成人亚洲综合青青| 亚洲xxx视频| 国产日韩精品综合网站| 26uuu国产精品视频| 中文字幕久久久| 欧美一级电影久久| 日韩激情视频在线| 欧美激情a在线| 国产有码在线一区二区视频| 国产色婷婷国产综合在线理论片a| 亚洲人成网站在线播| y97精品国产97久久久久久| 国产一区欧美二区三区| 91在线免费网站| 日韩免费在线电影| 91社区国产高清| 国产精品美女无圣光视频| 68精品国产免费久久久久久婷婷| 国模视频一区二区三区| 欧美精品久久一区二区| 日韩中文字幕在线视频播放| 性视频1819p久久| 国产精品久久久久久超碰| 国产欧美一区二区三区久久人妖| 精品视频在线导航| 久久久久久久激情视频| 亚洲va久久久噜噜噜| 欧美一级bbbbb性bbbb喷潮片| 欧美精品一区二区三区国产精品| xvideos亚洲| 国产精品第10页| 久久视频在线免费观看| 亚洲精选在线观看| 久久亚洲精品视频| 精品国产乱码久久久久久婷婷| 18久久久久久| 一本色道久久综合亚洲精品小说| 欧洲美女7788成人免费视频| 久久久久久综合网天天| 欧美视频二区36p| 欧亚精品在线观看| 日韩成人av网| 欧亚精品在线观看| 九九精品视频在线观看| 亚洲最大av网站| 日韩av在线一区| 成人亚洲欧美一区二区三区| 亚洲理论电影网| 日韩欧美中文字幕在线观看| 国产97免费视| 亚洲自拍偷拍第一页| 国产在线视频2019最新视频| 91精品国产综合久久香蕉的用户体验| 91免费国产网站| 亚洲品质视频自拍网| 久久精品人人爽| 精品综合久久久久久97| 国产精品视频成人| 91啪国产在线| 久久99亚洲热视| 亚洲欧美另类自拍| 欧美精品videossex88| 国产精品自拍视频| 日日狠狠久久偷偷四色综合免费| 欧美性猛交xxxx免费看漫画| 亚洲老头同性xxxxx| 国产综合色香蕉精品| 高跟丝袜一区二区三区| 亚洲欧洲成视频免费观看| 欧美香蕉大胸在线视频观看| 91精品视频观看| 国产精品最新在线观看| 国产网站欧美日韩免费精品在线观看| 欧美成人sm免费视频| 国产一区二区三区毛片| 欧美日本在线视频中文字字幕| 神马久久久久久| 欧美性极品少妇精品网站| 国产成人精品久久二区二区91| 国产精品青青在线观看爽香蕉| 深夜福利91大全| 成人97在线观看视频| 欧美性xxxxhd| 成人性生交大片免费看视频直播| 中文字幕在线看视频国产欧美| 欧美猛男性生活免费| 91精品综合视频| 人妖精品videosex性欧美| 精品性高朝久久久久久久| 国产91精品青草社区| 欧美日韩一区二区三区在线免费观看| 91精品国产91久久久| 欧美亚洲午夜视频在线观看| 日韩av中文字幕在线播放| 在线观看国产精品淫| 麻豆国产精品va在线观看不卡| 日韩美女免费视频| 欧美日韩精品在线观看| 欧美精品成人91久久久久久久| 亚洲无限av看| 自拍偷拍亚洲欧美| 国产欧美日韩免费| 亚洲美女av网站| 中文字幕v亚洲ⅴv天堂| 欧美成人精品在线| 国产免费观看久久黄| 欧美孕妇与黑人孕交| 欧美高清第一页| 久久亚洲精品小早川怜子66| 久久国产精品免费视频| 日韩精品免费在线视频观看| 久久久久www| 亚洲一区中文字幕在线观看| 91精品国产成人www| 亚洲精品二三区| 国产z一区二区三区| 91嫩草在线视频| 日韩视频在线免费观看| 亚洲91精品在线| 91精品美女在线| 国产一区二区三区视频| 精品亚洲va在线va天堂资源站| 欧美日韩亚洲系列| 国产99久久精品一区二区| 成人国产精品av| 国产精品久久久久9999| 国产精品露脸av在线| 日韩欧美精品免费在线| 亚洲精品资源在线| 亚洲女人天堂色在线7777| 亚洲国产91色在线| 啪一啪鲁一鲁2019在线视频| 668精品在线视频| 精品五月天久久| 亚洲免费中文字幕| 日本一区二区三区四区视频| 亚洲香蕉av在线一区二区三区| 51色欧美片视频在线观看| 亚洲va男人天堂| 欧美日韩免费在线|