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

首頁 > 系統 > iOS > 正文

詳解iOS應用UI開發中的九宮格坐標計算與字典轉換模型

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

九宮格坐標計算

一、要求

完成下面的布局

20161790120507.png (624×340)

二、分析

尋找左邊的規律,每一個uiview的x坐標和y坐標。

20161790146059.png (631×381)

三、實現思路

(1)明確每一塊用得是什么view

(2)明確每個view之間的父子關系,每個視圖都只有一個父視圖,擁有很多的子視圖。

(3)可以先嘗試逐個的添加格子,最后考慮使用for循環,完成所有uiview的創建

(4)加載app數據,根據數據長度創建對應個數的格子

(5)添加格子內部的子控件

(6)給內部的子控件裝配數據

四、代碼示例

復制代碼 代碼如下:

//
//  YYViewController.m
//  九宮格練習
//
//  Created by 孔醫己 on 14-5-22.
//  Copyright (c) 2014年 itcast. All rights reserved.
//

#import "YYViewController.h"

@interface YYViewController ()
@property(nonatomic,strong)NSArray *apps;
@end


復制代碼 代碼如下:

@implementation YYViewController
//1.加載數據
- (NSArray *)apps
{
    if (!_apps) {
        NSString *path=[[NSBundle mainBundle]pathForResource:@"app.plist" ofType:nil];
        _apps=[NSArray arrayWithContentsOfFile:path];
    }
    return _apps;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSLog(@"%d",self.apps.count);
   
    //2.完成布局設計
   
    //三列
    int totalloc=3;
    CGFloat appvieww=80;
    CGFloat appviewh=90;
   
    CGFloat margin=(self.view.frame.size.width-totalloc*appvieww)/(totalloc+1);
    int count=self.apps.count;
    for (int i=0; i<count; i++) {
        int row=i/totalloc;//行號
        //1/3=0,2/3=0,3/3=1;
        int loc=i%totalloc;//列號
       
        CGFloat appviewx=margin+(margin+appvieww)*loc;
        CGFloat appviewy=margin+(margin+appviewh)*row;
       
       
        //創建uiview控件
        UIView *appview=[[UIView alloc]initWithFrame:CGRectMake(appviewx, appviewy, appvieww, appviewh)];
        //[appview setBackgroundColor:[UIColor purpleColor]];
        [self.view addSubview:appview];
       
       
        //創建uiview控件中的子視圖
        UIImageView *appimageview=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 80, 50)];
        UIImage *appimage=[UIImage imageNamed:self.apps[i][@"icon"]];
        appimageview.image=appimage;
        [appimageview setContentMode:UIViewContentModeScaleAspectFit];
       // NSLog(@"%@",self.apps[i][@"icon"]);
        [appview addSubview:appimageview];
       
        //創建文本標簽
        UILabel *applable=[[UILabel alloc]initWithFrame:CGRectMake(0, 50, 80, 20)];
        [applable setText:self.apps[i][@"name"]];
        [applable setTextAlignment:NSTextAlignmentCenter];
        [applable setFont:[UIFont systemFontOfSize:12.0]];
        [appview addSubview:applable];
       
        //創建按鈕
        UIButton *appbtn=[UIButton buttonWithType:UIButtonTypeCustom];
        appbtn.frame= CGRectMake(10, 70, 60, 20);
        [appbtn setBackgroundImage:[UIImage imageNamed:@"buttongreen"] forState:UIControlStateNormal];
        [appbtn setBackgroundImage:[UIImage imageNamed:@"buttongreen_highlighted"] forState:UIControlStateHighlighted];
        [appbtn setTitle:@"下載" forState:UIControlStateNormal];
        appbtn.titleLabel.font=[UIFont systemFontOfSize:12.0];
        [appview addSubview:appbtn];
       
        [appbtn addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
    }

}

-(void)click
{
    //動畫標簽
    UILabel *animalab=[[UILabel alloc]initWithFrame:CGRectMake(self.view.center.x-100, self.view.center.y+20, 200, 40)];
    [animalab setText:@"下載成功"];
    animalab.font=[UIFont systemFontOfSize:12.0];
    [animalab setBackgroundColor:[UIColor brownColor]];
    [animalab setAlpha:0];
    [self.view addSubview:animalab];
   
//    [UIView beginAnimations:Nil context:Nil];
//    [animalab setAlpha:1];
//    [UIView setAnimationDuration:4.0];
//    [UIView commitAnimations];
   
    //執行完之后,還得把這給刪除了,推薦使用block動畫
   
    [UIView animateWithDuration:4.0 animations:^{
    [animalab setAlpha:1];
    } completion:^(BOOL finished) {
        //[self.view re];
    }];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}

@end


執行效果:

20161790233264.png (640×960)

字典轉模型

一、能完成功能的“問題代碼”

1.從plist中加載的數據

20161790258703.png (799×290)

2.實現的代碼

復制代碼 代碼如下:

//
//  LFViewController.m
//  03-應用管理
//
//  Created by apple on 14-5-22.
//  Copyright (c) 2014年 heima. All rights reserved.
//

#import "LFViewController.h"

@interface LFViewController ()
@property (nonatomic, strong) NSArray *appList;
@end

@implementation LFViewController

- (NSArray *)appList
{
    if (!_appList) {

        // 1. 從mainBundle加載
        NSBundle *bundle = [NSBundle mainBundle];
        NSString *path = [bundle pathForResource:@"app.plist" ofType:nil];
        _appList = [NSArray arrayWithContentsOfFile:path];
       
        NSLog(@"%@", _appList);
    }
    return _appList;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
   
    // 總共有3列
    int totalCol = 3;
    CGFloat viewW = 80;
    CGFloat viewH = 90;
   
    CGFloat marginX = (self.view.bounds.size.width - totalCol * viewW) / (totalCol + 1);
    CGFloat marginY = 10;
    CGFloat startY = 20;
   
    for (int i = 0; i < self.appList.count; i++) {

        int row = i / totalCol;
        int col = i % totalCol;
       
        CGFloat x = marginX + (viewW + marginX) * col;
        CGFloat y = startY + marginY + (viewH + marginY) * row;
       
        UIView *appView = [[UIView alloc] initWithFrame:CGRectMake(x, y, viewW, viewH)];
     
        [self.view addSubview:appView];
       
        // 創建appView內部的細節
        // 0> 讀取數組中的字典
        NSDictionary *dict = self.appList[i];
       
        // 1> UIImageView
        UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, viewW, 50)];
        imageView.image = [UIImage imageNamed:dict[@"icon"]];
        imageView.contentMode = UIViewContentModeScaleAspectFit;
        [appView addSubview:imageView];
       
        // 2> UILabel
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, imageView.bounds.size.height, viewW, 20)];
        // 設置文字
        label.text = dict[@"name"];
        label.font = [UIFont systemFontOfSize:12.0];
        label.textAlignment = NSTextAlignmentCenter;
       
        [appView addSubview:label];
       
        // 3> UIButton
        // UIButtonTypeCustom和[[UIButton alloc] init]是等價的
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = CGRectMake(15, 70, viewW - 30, 20);
       
        [button setTitle:@"下載" forState:UIControlStateNormal];
        // *** 不能使用如下代碼直接設置title
//        button.titleLabel.text = @"下載";
        // @property中readonly表示不允許修改對象的指針地址,但是可以修改對象的屬性
        button.titleLabel.font= [UIFont systemFontOfSize:14.0];
       
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen"] forState:UIControlStateNormal];
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen_highlighted"] forState:UIControlStateHighlighted];
       
        [appView addSubview:button];
    }
}

@end


3.實現效果

20161790318670.png (322×499)

4.代碼問題

在上述代碼的第62,69行,我們是直接通過字典的鍵名獲取plist中的數據信息,在viewController中需要直接和數據打交道,如果需要多次使用可能會因為不小心把鍵名寫錯,而程序并不報錯。鑒于此,可以考慮把字典數據轉換成一個模型,把數據封裝到一個模型中去,讓viewController不再直接和數據打交道,而是和模型交互。

一般情況下,設置數據和取出數據都使用“字符串類型的key”,編寫這些key時,編輯器沒有智能提示,需要手敲。如:

復制代碼 代碼如下:

dict[@"name"] = @"Jack";

NSString *name = dict[@"name"];


手敲字符串key,key容易寫錯

Key如果寫錯了,編譯器不會有任何警告和報錯,造成設錯數據或者取錯數據

二、字典轉模型

1.字典轉模型介紹

示意圖:

20161790336706.png (683×340)

字典轉模型的好處:

(1)降低代碼的耦合度

(2)所有字典轉模型部分的代碼統一集中在一處處理,降低代碼出錯的幾率

(3)在程序中直接使用模型的屬性操作,提高編碼效率

(4)調用方不用關心模型內部的任何處理細節

字典轉模型的注意點:

模型應該提供一個可以傳入字典參數的構造方法

復制代碼 代碼如下:

- (instancetype)initWithDict:(NSDictionary *)dict;

+ (instancetype)xxxWithDict:(NSDictionary *)dict;


提示:在模型中合理地使用只讀屬性,可以進一步降低代碼的耦合度。

 

 2.代碼示例(一)

新建一個類,用來作為數據模型

復制代碼 代碼如下:

viewController.m文件代碼(字典轉模型)
#import "LFViewController.h"
#import "LFAppInfo.h"

@interface LFViewController ()
@property (nonatomic, strong) NSArray *appList;
@end

@implementation LFViewController

// 字典轉模型
- (NSArray *)appList
{
    if (!_appList) {
        // 1. 從mainBundle加載
        NSBundle *bundle = [NSBundle mainBundle];
        NSString *path = [bundle pathForResource:@"app.plist" ofType:nil];
//        _appList = [NSArray arrayWithContentsOfFile:path];
       
        NSArray *array = [NSArray arrayWithContentsOfFile:path];
        // 將數組轉換成模型,意味著self.appList中存儲的是LFAppInfo對象
        // 1. 遍歷數組,將數組中的字典依次轉換成AppInfo對象,添加到一個臨時數組
        // 2. self.appList = 臨時數組

        NSMutableArray *arrayM = [NSMutableArray array];
        for (NSDictionary *dict in array) {
           //用字典來實例化對象的工廠方法
            [arrayM addObject:[LFAppInfo appInfoWithDict:dict]];
        }
       
        _appList = arrayM;
    }
    return _appList;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
   
    // 總共有3列
    int totalCol = 3;
    CGFloat viewW = 80;
    CGFloat viewH = 90;
   
    CGFloat marginX = (self.view.bounds.size.width - totalCol * viewW) / (totalCol + 1);
    CGFloat marginY = 10;
    CGFloat startY = 20;
   
    for (int i = 0; i < self.appList.count; i++) {

        int row = i / totalCol;
        int col = i % totalCol;
       
        CGFloat x = marginX + (viewW + marginX) * col;
        CGFloat y = startY + marginY + (viewH + marginY) * row;
       
        UIView *appView = [[UIView alloc] initWithFrame:CGRectMake(x, y, viewW, viewH)];
       
        [self.view addSubview:appView];
       
        // 創建appView內部的細節
        // 0> 讀取數組中的AppInfo
//        NSDictionary *dict = self.appList[i];
        LFAppInfo *appInfo = self.appList[i];
       
        // 1> UIImageView
        UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, viewW, 50)];
        imageView.image = appInfo.image;
        imageView.contentMode = UIViewContentModeScaleAspectFit;
       
        [appView addSubview:imageView];
       
        // 2> UILabel
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, imageView.bounds.size.height, viewW, 20)];
        // 設置文字
        label.text = appInfo.name;
        label.font = [UIFont systemFontOfSize:12.0];
        label.textAlignment = NSTextAlignmentCenter;
       
        [appView addSubview:label];
       
        // 3> UIButton
        // UIButtonTypeCustom和[[UIButton alloc] init]是等價的
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = CGRectMake(15, 70, viewW - 30, 20);
       
        [button setTitle:@"下載" forState:UIControlStateNormal];
        button.titleLabel.font= [UIFont systemFontOfSize:14.0];
       
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen"] forState:UIControlStateNormal];
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen_highlighted"] forState:UIControlStateHighlighted];
       
        [appView addSubview:button];
        button.tag = i;
       
        [button addTarget:self action:@selector(downloadClick:) forControlEvents:UIControlEventTouchUpInside];
    }
}

- (void)downloadClick:(UIButton *)button
{
    NSLog(@"%d", button.tag);
    // 實例化一個UILabel顯示在視圖上,提示用戶下載完成
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(80, 400, 160, 40)];
    label.textAlignment = NSTextAlignmentCenter;
    label.backgroundColor = [UIColor lightGrayColor];
   
    LFAppInfo *appInfo = self.appList[button.tag];
    label.text = [NSString stringWithFormat:@"下載%@完成", appInfo.name];
    label.font = [UIFont systemFontOfSize:13.0];
    label.alpha = 1.0;
    [self.view addSubview:label];
   
    // 動畫效果
    // 動畫效果完成之后,將Label從視圖中刪除
    // 首尾式動畫,只能做動畫,要處理完成后的操作不方便
//    [UIView beginAnimations:nil context:nil];
//    [UIView setAnimationDuration:1.0];
//    label.alpha = 1.0;
//    [UIView commitAnimations];

    // block動畫比首尾式動畫簡單,而且能夠控制動畫結束后的操作
    // 在iOS中,基本都使用首尾式動畫
    [UIView animateWithDuration:2.0 animations:^{
        label.alpha = 0.0;
    } completion:^(BOOL finished) {
        // 刪除label
        [label removeFromSuperview];
    }];
}

@end


模型.h文件代碼
復制代碼 代碼如下:

#import <Foundation/Foundation.h>

@interface LFAppInfo : NSObject

// 應用程序名稱
@property (nonatomic, copy) NSString *name;
// 應用程序圖標名稱
@property (nonatomic, copy) NSString *icon;

// 圖像
// 定義屬性時,會生成getter&setter方法,還會生成一個帶下劃線的成員變量
// 如果是readonly屬性,只會生成getter方法,同時沒有成員變量
@property (nonatomic, strong, readonly) UIImage *image;

// instancetype會讓編譯器檢查實例化對象的準確類型
// instancetype只能用于返回類型,不能當做參數使用

- (instancetype)initWithDict:(NSDictionary *)dict;
/** 工廠方法 */
+ (instancetype)appInfoWithDict:(NSDictionary *)dict;

@end


模型.m文件數據處理代碼
復制代碼 代碼如下:

#import "LFAppInfo.h"

@interface LFAppInfo()
{
    UIImage *_imageABC;
}
@end


復制代碼 代碼如下:

@implementation LFAppInfo

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        self.name = dict[@"name"];
        self.icon = dict[@"icon"];
    }
    return self;
}

+ (instancetype)appInfoWithDict:(NSDictionary *)dict
{
    return [[self alloc] initWithDict:dict];
}

- (UIImage *)image
{
    if (!_imageABC) {
        _imageABC = [UIImage imageNamed:self.icon];
    }
    return _imageABC;
}

@end


3.代碼示例(二)

數據信息:plist文件

20161790400641.png (763×667)

字典轉模型(初步)

模型.h文件

復制代碼 代碼如下:

#import <Foundation/Foundation.h>

@interface LFQuestion : NSObject

@property (nonatomic, copy) NSString *answer;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *icon;
@property (nonatomic, strong) NSArray *options;

@property (nonatomic, strong) UIImage *image;

/** 用字典實例化對象的成員方法 */
- (instancetype)initWithDict:(NSDictionary *)dict;
/** 用字典實例化對象的類方法,又稱工廠方法 */
+ (instancetype)questionWithDict:(NSDictionary *)dict;
@end


模型.m文件
復制代碼 代碼如下:

#import "LFQuestion.h"

@implementation LFQuestion

+ (instancetype)questionWithDict:(NSDictionary *)dict
{
    return [[self alloc] initWithDict:dict];
}

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        self.answer = dict[@"answer"];
        self.icon = dict[@"icon"];
        self.title = dict[@"title"];
        self.options = dict[@"options"];

        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}

viewController.m文件中的數據處理

- (NSArray *)questions
{
    if (!_questions) {
   
        NSArray *array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"questions.plist" ofType:nil]];
       
        NSMutableArray *arrayM = [NSMutableArray array];
       
        for (NSDictionary *dict in array) {
            [arrayM addObject:[LFQuestion questionWithDict:dict]];
        }
        _questions=arrayM;
    }
    return _questions;
}


字典轉模型(優化)

上面代碼可以做進一步的優化,從plist文件中讀取數據是可以交給模型去處理的,優化后代碼如下:

模型.h文件

復制代碼 代碼如下:

#import <Foundation/Foundation.h>

@interface LFQuestion : NSObject

@property (nonatomic, copy) NSString *answer;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *icon;
@property (nonatomic, strong) NSArray *options;

@property (nonatomic, strong) UIImage *image;

/** 用字典實例化對象的成員方法 */
- (instancetype)initWithDict:(NSDictionary *)dict;
/** 用字典實例化對象的類方法,又稱工廠方法 */
+ (instancetype)questionWithDict:(NSDictionary *)dict;

/** 從plist加載對象數組 */
+ (NSArray *)questions;

@end


模型.m文件
復制代碼 代碼如下:

#import "LFQuestion.h"

@implementation LFQuestion

+ (instancetype)questionWithDict:(NSDictionary *)dict
{
    return [[self alloc] initWithDict:dict];
}

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        self.answer = dict[@"answer"];
        self.icon = dict[@"icon"];
        self.title = dict[@"title"];
        self.options = dict[@"options"];
       
        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}


+ (NSArray *)questions
{
    NSArray *array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"questions.plist" ofType:nil]];
   
    NSMutableArray *arrayM = [NSMutableArray array];
   
    for (NSDictionary *dict in array) {
        [arrayM addObject:[LFQuestion questionWithDict:dict]];
    }
   
    return arrayM;
}
@end


viewController.m文件中的數據處理代碼部分
復制代碼 代碼如下:

- (NSArray *)questions
{
    if (!_questions) {
        _questions = [LFQuestion questions];
    }
    return _questions;
}

補充內容:(KVC)的使用

(1)在模型內部的數據處理部分,可以使用鍵值編碼來進行處理

復制代碼 代碼如下:

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
//        self.answer = dict[@"answer"];
//        self.icon = dict[@"icon"];
//        self.title = dict[@"title"];
//        self.options = dict[@"options"];
       
        // KVC (key value coding)鍵值編碼
        // cocoa 的大招,允許間接修改對象的屬性值
        // 第一個參數是字典的數值
        // 第二個參數是類的屬性
        [self setValue:dict[@"answer"] forKeyPath:@"answer"];
        [self setValue:dict[@"icon"] forKeyPath:@"icon"];
        [self setValue:dict[@"title"] forKeyPath:@"title"];
        [self setValue:dict[@"options"] forKeyPath:@"options"];
    }
    return self;
}

(2)setValuesForKeys的使用

上述數據操作細節,可以直接通過setValuesForKeys方法來完成。

復制代碼 代碼如下:

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        // 使用setValuesForKeys要求類的屬性必須在字典中存在,可以比字典中的鍵值多,但是不能少。
        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}

三、補充說明

1.readonly屬性

 (1)@property中readonly表示不允許修改對象的指針地址,但是可以修改對象的屬性。

 (2)通常使用@property關鍵字定義屬性時,會生成getter&setter方法,還會生成一個帶下劃線的成員變量。

 (3)如果是readonly屬性,只會生成getter方法,不會生成帶下劃線的成員變量.

2.instancetype類型

(1)instancetype會讓編譯器檢查實例化對象的準確類型
(2)instancetype只能用于返回類型,不能當做參數使用

3.instancetype & id的比較

(1) instancetype在類型表示上,跟id一樣,可以表示任何對象類型

(2) instancetype只能用在返回值類型上,不能像id一樣用在參數類型上

(3) instancetype比id多一個好處:編譯器會檢測instancetype的真實類型

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
久久久成人精品视频| 久久精品成人欧美大片古装| 九九热这里只有在线精品视| 久久av在线看| 岛国视频午夜一区免费在线观看| 国产国语刺激对白av不卡| 久久久精品国产| 日韩人在线观看| 日韩中文字幕在线播放| 91亚洲精品一区二区| 欧美激情日韩图片| 国产区亚洲区欧美区| 91精品啪在线观看麻豆免费| 国产成人综合久久| 亚洲大胆人体av| 亚洲精品国产美女| 啊v视频在线一区二区三区| 中文字幕亚洲激情| 国产99久久精品一区二区 夜夜躁日日躁| 欧美夜福利tv在线| 欧美电影免费观看大全| 久久九九国产精品怡红院| 日韩高清电影好看的电视剧电影| 欧美国产日韩免费| 精品久久久久久久久久久| 国产成人精品久久久| 国产精品草莓在线免费观看| 国产精品日日做人人爱| 91免费在线视频网站| 91精品国产综合久久香蕉最新版| 久久久噜久噜久久综合| 久久久久久这里只有精品| 国内精品一区二区三区四区| 亚洲电影免费观看| 欧美成人自拍视频| 欧美性猛交xxxx久久久| 久久久91精品国产一区不卡| 精品国产一区二区三区久久狼黑人| 亚洲精品久久久一区二区三区| 亚洲欧美国产制服动漫| 日韩欧美视频一区二区三区| 青草青草久热精品视频在线观看| 国产成人aa精品一区在线播放| 久久久精品国产| 久久综合伊人77777尤物| 97碰在线观看| 亚洲国产黄色片| 欧美丰满老妇厨房牲生活| 午夜精品一区二区三区视频免费看| 欧美日韩在线免费| 亚洲男人7777| 欧美日韩国产二区| 国产这里只有精品| 亚洲美女精品久久| 亚洲视频一区二区三区| 精品久久香蕉国产线看观看gif| 欧美精品videossex性护士| 国产精品中文字幕在线观看| 一本色道久久综合狠狠躁篇怎么玩| 精品无码久久久久久国产| 欧美激情一级欧美精品| 亚洲精品色婷婷福利天堂| 久久99久国产精品黄毛片入口| 孩xxxx性bbbb欧美| 日韩性生活视频| www.日韩不卡电影av| 91国产精品电影| 伊人激情综合网| 一区二区三区黄色| 91在线高清免费观看| 欧美xxxx18性欧美| 亚洲男人第一av网站| 久久人人爽人人爽人人片亚洲| 欧美一级大片在线免费观看| 国产综合香蕉五月婷在线| 日韩在线视频免费观看高清中文| 性色av一区二区三区| 久久全国免费视频| 欧美电影院免费观看| 亚洲第一区在线观看| 奇米4444一区二区三区| 国产精品久久久久久久久粉嫩av| 久久精品中文字幕| 欧美极品少妇xxxxⅹ免费视频| 91免费国产视频| 国产精品91一区| 亚洲免费一在线| 国产一区二区三区精品久久久| 性视频1819p久久| 成人xxxx视频| 精品欧美aⅴ在线网站| 日韩第一页在线| 日韩一二三在线视频播| 色综久久综合桃花网| 亚洲日本aⅴ片在线观看香蕉| 久久久久久久久久久久久久久久久久av| 亚洲视频自拍偷拍| 操人视频在线观看欧美| 色中色综合影院手机版在线观看| 精品久久久999| 97碰在线观看| 日韩av免费一区| 亚洲欧美成人在线| 欧美孕妇孕交黑巨大网站| 91免费国产网站| 这里只有精品在线播放| 欧美成人sm免费视频| 亚洲男人的天堂在线播放| 国产精品久久久久aaaa九色| 日韩av最新在线观看| 久久久久国色av免费观看性色| 粉嫩av一区二区三区免费野| 亚洲老司机av| 国产精品久久久久免费a∨| 91久久国产精品91久久性色| 91精品视频在线看| 亚洲精品久久久久中文字幕欢迎你| 国产日韩欧美视频在线| 久久成人精品一区二区三区| 亚洲欧美日韩国产成人| 国产精品国产自产拍高清av水多| 精品视频在线导航| 久久久久久欧美| 久久精品国产久精国产思思| 国产精品久久久久久av下载红粉| 91青草视频久久| 欧美一区二区视频97| 欧美最顶级丰满的aⅴ艳星| 日本一区二区三区四区视频| 国产婷婷色综合av蜜臀av| 久久国产精品久久久久| 91精品国产高清久久久久久| 色偷偷88888欧美精品久久久| 午夜欧美不卡精品aaaaa| 欧美极品少妇xxxxⅹ裸体艺术| 亚洲午夜久久久影院| 欧美性理论片在线观看片免费| 日韩精品高清在线观看| 国产精品va在线播放我和闺蜜| 亚洲国产精品成人一区二区| 亚洲色图在线观看| 欧美三级免费观看| 97久久国产精品| 日韩欧美在线中文字幕| 亚洲一区二区三区四区视频| 一级做a爰片久久毛片美女图片| 在线精品高清中文字幕| 精品久久久久久久久久久| 欧美精品电影在线| 日韩在线观看高清| 亚洲人成五月天| 亚洲一区二区免费在线| 亚洲人成在线一二| 国产a∨精品一区二区三区不卡| 亚洲小视频在线| 亚洲国产第一页| 国产精品99一区| 亚洲午夜av电影| 成人激情免费在线| 亚洲高清久久久久久| 国产精品成人免费电影| 一区二区亚洲精品国产| 国产99久久精品一区二区 夜夜躁日日躁| 欧美激情精品久久久久久黑人|