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

首頁 > 系統 > iOS > 正文

iOS仿微信圖片分享界面實現代碼

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

分享功能目前幾乎已成為很多app的標配了,其中微信,微博等app的圖片分享界面設計的很棒,不僅能夠展示縮略圖,還可以預覽刪除。最近我在做一款社交分享app,其中就要實現圖文分享功能,于是試著自行實現仿微信分享風格的功能。

核心思想:

主要是使用UICollectionView來動態加載分享圖片內容,配合預覽頁面,實現動態添加和預覽刪除圖片效果。

實現效果:

核心代碼如下:

分享界面:

////  PostTableViewController.h//  NineShare////  Created by 張昌偉 on 15/1/26.//  Copyright (c) 2015年 9Studio. All rights reserved.// #import <UIKit/UIKit.h>#import "UMSocial.h"#import "YSYPreviewViewController.h" @interface PostTableViewController : UITableViewController<UITextViewDelegate,UICollectionViewDataSource,UICollectionViewDelegate,UIActionSheetDelegate,UIImagePickerControllerDelegate,UMSocialUIDelegate,UINavigationControllerDelegate> @property (weak,nonatomic)IBOutlet UICollectionView *photosCollectionView;@property (weak,nonatomic)IBOutlet UISwitch *WeiboSwitch;@property (weak,nonatomic)IBOutlet UISwitch *RenrenSwitch;- (IBAction)DoubanSwitched:(id)sender;- (IBAction)RenrenSwitched:(id)sender;- (IBAction)WeiboSwitched:(id)sender; +(void) deleteSelectedImage:(NSInteger) index;+(void) deleteSelectedImageWithImage:(UIImage*)image;@end 

 實現文件

////  PostTableViewController.m//  NineShare////  Created by 張昌偉 on 15/1/26.//  Copyright (c) 2015年 9Studio. All rights reserved.// #import "PostTableViewController.h"#import "NineShareService.h"static NSMutableArray *currentImages;@interface PostTableViewController ()@property (weak,nonatomic)IBOutlet UITextView *shareContent;- (IBAction)postStatus:(id)sender;- (IBAction)cancelPost:(id)sender;-(void) loadSNSStatus;@property (weak,nonatomic)IBOutlet UISwitch *DoubanSwitch;@property (weak,nonatomic)IBOutlet UITextView *backgroundTextView;@property NSMutableArray *snsArray;//@property NSMutableArray *photos;@property NineShareService *dataContext;@property NSMutableDictionary *tempDict; -(void) openCamera;-(void) openLibary; @end @implementation PostTableViewController - (void)viewDidLoad { [super viewDidLoad]; if(currentImages ==nil) { currentImages=[[NSMutableArray alloc] init]; } // Uncomment the following line to preserve selection between presentations. // self.clearsSelectionOnViewWillAppear = NO;  // Uncomment the following line to display an Edit button in the navigation bar for this view controller. // self.navigationItem.rightBarButtonItem = self.editButtonItem; _dataContext=[NineShareService getInstance]; [self loadSNSStatus];}-(void)viewWillAppear:(BOOL)animated{ [_photosCollectionView reloadData];}- (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.} -(void) loadSNSStatus{ _snsArray=[NSMutableArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sns" ofType:@"plist"]]; if(_snsArray.count>0) { [_WeiboSwitch setOn:[_snsArray[0] boolValue] animated:YES]; [_RenrenSwitch setOn:[_snsArray[1] boolValue] animated:YES]; [_DoubanSwitch setOn:[_snsArray[2] boolValue] animated:YES]; }}-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{ if(![text isEqualToString:@""]) { [_backgroundTextView setHidden:YES]; } if([text isEqualToString:@""]&&range.length==1&&range.location==0){ [_backgroundTextView setHidden:NO]; } if ([text isEqualToString:@"/n"]) { [textView resignFirstResponder]; return NO; } return YES;}-(void)textViewDidBeginEditing:(UITextView *)textView{ CGRect frame = textView.frame; int offset = frame.origin.y + 32 - (self.view.frame.size.height - 216.0);//鍵盤高度216  NSTimeInterval animationDuration = 0.30f; [UIView beginAnimations:@"ResizeForKeyboard" context:nil]; [UIView setAnimationDuration:animationDuration];  //將視圖的Y坐標向上移動offset個單位,以使下面騰出地方用于軟鍵盤的顯示 if(offset > 0) self.view.frame = CGRectMake(0.0f, -offset, self.view.frame.size.width,self.view.frame.size.height);  [UIView commitAnimations];} -(void)textViewDidEndEditing:(UITextView *)textView{ self.view.frame =CGRectMake(0, 0, self.view.frame.size.width,self.view.frame.size.height);}-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{ if(indexPath.row==currentImages.count) { UIActionSheet *action=[[UIActionSheet alloc] initWithTitle:@"選取照片" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:@"從攝像頭選取", @"從圖片庫選擇",nil]; [action showInView:self.view]; } else { [YSYPreviewViewController setPreviewImage:currentImages[indexPath.row]]; [self.navigationController pushViewController:[[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"PreviewVC"] animated:YES]; }} -(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{ return currentImages.count==0?1:currentImages.count+1;}-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{ UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"collectionCell" forIndexPath:indexPath]; UIImageView *imageView=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)]; if(currentImages.count==0||indexPath.row==currentImages.count) { imageView.image=[UIImage imageNamed:@"Add"]; } else{   while ([cell.contentView.subviews lastObject] != nil) {  [(UIView*)[cell.contentView.subviews lastObject] removeFromSuperview]; } imageView.image=currentImages[indexPath.row]; }  imageView.contentMode=UIViewContentModeScaleAspectFill; [cell.contentView addSubview:imageView]; return cell;} -(void)saveSNSToFile{ NSString *destPath=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) lastObject]; if (![[NSFileManager defaultManager] fileExistsAtPath:destPath]) {  NSString *path=[[NSBundle mainBundle] pathForResource:@"sns" ofType:@"plist"]; [[NSFileManager defaultManager] copyItemAtPath:path toPath:destPath error:nil]; }  if(_snsArray==nil) _snsArray=[[NSMutableArray alloc] init]; [_snsArray removeAllObjects]; [_snsArray addObject:_WeiboSwitch.isOn?@"YES":@"NO"]; [_snsArray addObject:_RenrenSwitch.isOn?@"YES":@"NO"]; [_snsArray addObject:_DoubanSwitch.isOn?@"YES":@"NO"]; if(_snsArray.count>0) { [_snsArray writeToFile:destPath atomically:YES]; }} - (IBAction)postStatus:(id)sender { if(_WeiboSwitch.isOn) [[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToSina] content:_shareContent.text.length>0?_shareContent.text: @"9Share for ios test message" image:currentImages.count==0?nil:currentImages[0] location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *response){  if (response.responseCode == UMSResponseCodeSuccess) {  NSLog(@"分享成功!");  if(!(_RenrenSwitch.isOn||_DoubanSwitch.isOn))  {   [self saveSNSToFile];   [self dismissViewControllerAnimated:YES completion:nil];  }  } }]; if(_RenrenSwitch.isOn) [[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToRenren] content:_shareContent.text.length>0?_shareContent.text: @"9Share for ios test message" image:currentImages.count==0?nil:currentImages[0] location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *response){  if (response.responseCode == UMSResponseCodeSuccess) {  NSLog(@"分享成功!");  if(!_DoubanSwitch.isOn)  {   [self saveSNSToFile];   [self dismissViewControllerAnimated:YES completion:nil];  }  } }]; if(_DoubanSwitch.isOn) [[UMSocialDataService defaultDataService] postSNSWithTypes:@[UMShareToDouban] content:_shareContent.text.length>0?_shareContent.text: @"9Share for ios test message" image:currentImages.count==0?nil:currentImages[0] location:nil urlResource:nil presentedController:self completion:^(UMSocialResponseEntity *response){  if (response.responseCode == UMSResponseCodeSuccess) {  NSLog(@"分享成功!");  [self saveSNSToFile];  [self dismissViewControllerAnimated:YES completion:nil];  } }];  } -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{ [picker dismissViewControllerAnimated:YES completion:nil]; UIImage *image=[info objectForKey:UIImagePickerControllerOriginalImage]; NSData *tempData=UIImageJPEGRepresentation(image, 0.5f); image=[UIImage imageWithData:tempData]; if(currentImages ==nil) { currentImages=[[NSMutableArray alloc] init]; } [currentImages addObject:image]; [_photosCollectionView reloadData]; // [self saveImage:image withName:@""]} -(void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{ [picker dismissViewControllerAnimated:YES completion:nil];}- (IBAction)cancelPost:(id)sender { [self dismissViewControllerAnimated:YES completion:nil];}  -(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{  switch (buttonIndex) { case 0:  [self openCamera];  break; case 1:  [self openLibary];  break;  default:  break; }}-(void)openCamera{ //UIImagePickerControllerSourceType *type=UIImagePickerControllerSourceTypeCamera; if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {  UIImagePickerController *picker=[[UIImagePickerController alloc] init];  picker.delegate=self;  picker.sourceType=UIImagePickerControllerSourceTypeCamera;  picker.allowsEditing=YES;  [self presentViewController:picker animated:YES completion:nil];   }}-(void)openLibary{ if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) { UIImagePickerController *picker=[[UIImagePickerController alloc] init]; picker.delegate=self; picker.sourceType=UIImagePickerControllerSourceTypePhotoLibrary; picker.allowsEditing=YES; [self presentViewController:picker animated:YES completion:nil];   } }-(void) saveImage:(UIImage *)image withName:(NSString *)name{ NSData *imageData=UIImageJPEGRepresentation(image, 0.5); NSString *path=[NSTemporaryDirectory() stringByAppendingPathComponent:name]; [imageData writeToFile:path atomically:YES]; }- (IBAction)DoubanSwitched:(id)sender { if(_DoubanSwitch.isOn){ if(![UMSocialAccountManager isOauthAndTokenNotExpired:UMShareToDouban]) {  //進入授權頁面  [UMSocialSnsPlatformManager getSocialPlatformWithName:UMShareToDouban].loginClickHandler(self,[UMSocialControllerService defaultControllerService],YES,^(UMSocialResponseEntity *response){  if (response.responseCode == UMSResponseCodeSuccess) {   //獲取微博用戶名、uid、token等   UMSocialAccountEntity *snsAccount = [[UMSocialAccountManager socialAccountDictionary] valueForKey:UMShareToDouban];   NSLog(@"username is %@, uid is %@, token is %@",snsAccount.userName,snsAccount.usid,snsAccount.accessToken);   //進入你的分享內容編輯頁面   UMSocialAccountEntity *doubanAccount = [[UMSocialAccountEntity alloc] initWithPlatformName:UMShareToDouban];   doubanAccount.usid = snsAccount.usid;   doubanAccount.accessToken = snsAccount.accessToken;   //  weiboAccount.openId = @"tencent weibo openId";  //騰訊微博賬戶必需設置openId   //同步用戶信息   [UMSocialAccountManager postSnsAccount:doubanAccount completion:^(UMSocialResponseEntity *response){   if (response.responseCode == UMSResponseCodeSuccess) {    //在本地緩存設置得到的賬戶信息    [UMSocialAccountManager setSnsAccount:doubanAccount];    //進入你自定義的分享內容編輯頁面或者使用我們的內容編輯頁面   }}];  }  else {   [_DoubanSwitch setOn:NO animated:YES];  }  }); } }} - (IBAction)RenrenSwitched:(id)sender { if(_DoubanSwitch.isOn) { if(![UMSocialAccountManager isOauthAndTokenNotExpired:UMShareToRenren]) {  //進入授權頁面  [UMSocialSnsPlatformManager getSocialPlatformWithName:UMShareToRenren].loginClickHandler(self,[UMSocialControllerService defaultControllerService],YES,^(UMSocialResponseEntity *response){  if (response.responseCode == UMSResponseCodeSuccess) {   //獲取微博用戶名、uid、token等   UMSocialAccountEntity *snsAccount = [[UMSocialAccountManager socialAccountDictionary] valueForKey:UMShareToRenren];   NSLog(@"username is %@, uid is %@, token is %@",snsAccount.userName,snsAccount.usid,snsAccount.accessToken);   //進入你的分享內容編輯頁面   UMSocialAccountEntity *renrenAccount = [[UMSocialAccountEntity alloc] initWithPlatformName:UMShareToRenren];   renrenAccount.usid = snsAccount.usid;   renrenAccount.accessToken = snsAccount.accessToken;   //  weiboAccount.openId = @"tencent weibo openId";  //騰訊微博賬戶必需設置openId   //同步用戶信息   [UMSocialAccountManager postSnsAccount:renrenAccount completion:^(UMSocialResponseEntity *response){   if (response.responseCode == UMSResponseCodeSuccess) {    //在本地緩存設置得到的賬戶信息    [UMSocialAccountManager setSnsAccount:renrenAccount];    //進入你自定義的分享內容編輯頁面或者使用我們的內容編輯頁面   }}];  }  else{   [_RenrenSwitch setOn:NO animated:YES];  }  }); }  }}  - (IBAction)WeiboSwitched:(id)sender { if(_WeiboSwitch.isOn) { if(![UMSocialAccountManager isOauthAndTokenNotExpired:UMShareToSina]) {  [UMSocialSnsPlatformManager getSocialPlatformWithName:UMShareToSina].loginClickHandler(self,[UMSocialControllerService defaultControllerService],YES,^(UMSocialResponseEntity *response){  if(response.responseCode==UMSResponseCodeSuccess){   UMSocialAccountEntity *snsAccount=[[UMSocialAccountManager socialAccountDictionary] valueForKey:UMShareToSina];   UMSocialAccountEntity *sinaAccount=[[UMSocialAccountEntity alloc] initWithPlatformName:UMShareToSina];   //緩存到本地   sinaAccount.usid = snsAccount.usid;   sinaAccount.accessToken = snsAccount.accessToken;   //  weiboAccount.openId = @"tencent weibo openId";  //騰訊微博賬戶必需設置openId   //同步用戶信息   [UMSocialAccountManager postSnsAccount:sinaAccount completion:^(UMSocialResponseEntity *response){   if (response.responseCode == UMSResponseCodeSuccess) {    //在本地緩存設置得到的賬戶信息    [UMSocialAccountManager setSnsAccount:sinaAccount];    //進入你自定義的分享內容編輯頁面或者使用我們的內容編輯頁面   }}];   }  else  {   [_WeiboSwitch setOn:NO animated:YES];  }  }); } }} +(void)deleteSelectedImage:(NSInteger)index{ if(currentImages!=nil) [currentImages removeObjectAtIndex:index];}+(void)deleteSelectedImageWithImage:(UIImage *)image{ if(currentImages!=nil) [currentImages removeObject:image]; }@end 

 預覽界面:

//// YSYPreviewViewController.h// NineShare//// Created by ZhangChangwei on 15/2/1.// Copyright (c) 2015年 9Studio. All rights reserved.// #import <UIKit/UIKit.h>#import "PostTableViewController.h" @interface YSYPreviewViewController : UIViewController<UIActionSheetDelegate>+(void) setPreviewImage:(UIImage *)image;@end
//// YSYPreviewViewController.m// NineShare//// Created by ZhangChangwei on 15/2/1.// Copyright (c) 2015年 9Studio. All rights reserved.// #import "YSYPreviewViewController.h"static UIImage *currentImage;@interface YSYPreviewViewController ()- (IBAction)deleteSelectedImage:(id)sender;@property (weak, nonatomic) IBOutlet UIImageView *previewImageView; @end @implementation YSYPreviewViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. _previewImageView.image=currentImage;} - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.} /*#pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // Get the new view controller using [segue destinationViewController]. // Pass the selected object to the new view controller.}*/ - (IBAction)deleteSelectedImage:(id)sender { UIActionSheet *action=[[UIActionSheet alloc] initWithTitle:@"要刪除這張照片嗎?" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"刪除" otherButtonTitles: nil]; [action showInView:self.view];}-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{ if(buttonIndex==actionSheet.cancelButtonIndex) { return; } else { [PostTableViewController deleteSelectedImageWithImage:currentImage]; [self.navigationController popToRootViewControllerAnimated:YES]; }} +(void)setPreviewImage:(UIImage *)image{ currentImage=image;}@end

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
91视频8mav| 中文字幕日韩高清| www.日韩.com| 日本精品久久久| 九九热r在线视频精品| 国产精品啪视频| 97碰碰碰免费色视频| 日韩在线不卡视频| 69久久夜色精品国产7777| 国产精品自拍网| 国产裸体写真av一区二区| 成人福利网站在线观看11| 亚洲国产黄色片| 性夜试看影院91社区| 成人免费看片视频| 欧美激情三级免费| 欧美日韩精品在线视频| 在线观看久久av| 欧美高清视频在线播放| 成人精品久久一区二区三区| 最近2019中文字幕mv免费看| 欧美美女操人视频| 大荫蒂欧美视频另类xxxx| 中文字幕亚洲欧美日韩在线不卡| 久久久999精品视频| 欧美精品在线第一页| 91精品国产免费久久久久久| 亚洲伊人一本大道中文字幕| 日韩精品免费电影| 久久国产精品久久久久久| 亚洲最新av网址| 91久久在线播放| 国产精品视频公开费视频| 久久久久久一区二区三区| 亚洲跨种族黑人xxx| 久久69精品久久久久久久电影好| 欧美精品九九久久| 国产区精品在线观看| 久久不射电影网| 成人激情视频小说免费下载| 欧美精品在线免费观看| 久久精品国产久精国产思思| 欧美激情第三页| 中文字幕日本欧美| 欧美超级乱淫片喷水| 欧美性猛交丰臀xxxxx网站| 日韩美女在线看| 日韩一区二区三区xxxx| 97欧美精品一区二区三区| 久久精品2019中文字幕| 色先锋久久影院av| 色多多国产成人永久免费网站| 久久国产精品99国产精| 中文字幕久久久| 欧美一区二区色| 欧美日韩另类视频| 欧美性xxxxx| 色综合久久悠悠| 国产精品电影一区| 精品人伦一区二区三区蜜桃网站| 少妇高潮久久久久久潘金莲| 日韩中文在线视频| 国产免费观看久久黄| 亚洲色图在线观看| 黑人巨大精品欧美一区免费视频| 欧美日韩国产精品| 欧美成人免费大片| 日日骚av一区| 欧美日韩国产限制| 日韩电影免费在线观看中文字幕| 91啪国产在线| 亚洲r级在线观看| 亚洲社区在线观看| 欧美极品欧美精品欧美视频| 欧美激情精品久久久久久黑人| 亚洲精品国产精品国产自| 91社区国产高清| 精品视频在线观看日韩| 国产精品白丝jk喷水视频一区| 国产午夜精品免费一区二区三区| 久久久之久亚州精品露出| 国产亚洲视频在线观看| 国产精品福利无圣光在线一区| 毛片精品免费在线观看| 欧美日韩999| 精品成人乱色一区二区| 在线观看日韩专区| 亚洲天堂网站在线观看视频| 久久伊人精品天天| 国产精品av在线播放| 不卡中文字幕av| 精品少妇v888av| 超碰91人人草人人干| 中文字幕免费精品一区| 欧美激情性做爰免费视频| 亚洲高清福利视频| 欧美一级bbbbb性bbbb喷潮片| 国产精品亚发布| 欧美成年人网站| 尤物九九久久国产精品的特点| 日韩欧美精品免费在线| 欧美疯狂做受xxxx高潮| 亚洲国产精品va在线看黑人动漫| 少妇激情综合网| 4p变态网欧美系列| 亚洲欧美精品一区二区| 欧美人成在线视频| 亚洲人成在线观看| 一区二区三区天堂av| 91亚洲永久免费精品| 亚洲欧美日韩综合| 欧美亚洲另类制服自拍| 亚洲性生活视频在线观看| 亚洲视频专区在线| 日韩大片免费观看视频播放| 欧美理论片在线观看| 国产欧美日韩精品专区| 日韩电影大片中文字幕| 国产免费久久av| 色噜噜狠狠狠综合曰曰曰| 久久久久久香蕉网| 中文精品99久久国产香蕉| 国产精品27p| 91av福利视频| 91在线免费看网站| 91sao在线观看国产| 91丨九色丨国产在线| 国产精品伦子伦免费视频| 91在线看www| 欧美一区三区三区高中清蜜桃| 国产激情视频一区| 日韩欧美在线播放| 久久久久久久电影一区| 91久久精品国产| 国产高清视频一区三区| 成人综合网网址| 亚洲一区二区中文| 在线电影av不卡网址| 欧美激情视频网址| 自拍亚洲一区欧美另类| 国产欧美久久一区二区| 韩国国内大量揄拍精品视频| 亚洲综合在线播放| 亚洲人成网站在线播| 中文字幕亚洲欧美日韩在线不卡| 国产999在线观看| 国产色婷婷国产综合在线理论片a| 亚洲精品国偷自产在线99热| 亚洲成人av在线播放| 亚洲欧美日韩另类| 日韩成人高清在线| 久久九九热免费视频| 超碰91人人草人人干| 国产v综合v亚洲欧美久久| 欧美激情视频一区二区| 日韩在线观看成人| 日韩av免费在线观看| 欧美日韩国产中文精品字幕自在自线| 日韩网站免费观看高清| 日韩av在线导航| 国产精品永久免费在线| 国产精品福利小视频| 欧美精品中文字幕一区| 69久久夜色精品国产7777|