国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

iOS圖片界面翻頁切換效果

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

本文實例為大家分享了iOS圖片界面翻頁切換的具體代碼,供大家參考,具體內容如下

先看效果:

下面貼代碼:

#import "ViewController.h"  @interface ViewController ()  @property (weak, nonatomic) IBOutlet UIImageView *backgroundView; @property (strong,nonatomic) NSArray *array;  @end  @implementation ViewController  -(NSArray *)array {  if (_array == nil) {   UIImage *image1 = [UIImage imageNamed:@"01.jpg"];   UIImage *image2 = [UIImage imageNamed:@"02.jpg"];   _array = @[image1,image2];  }  return _array; }  - (void)viewDidLoad {  [super viewDidLoad];  self.backgroundView.image = self.array[0];  // Do any additional setup after loading the view, typically from a nib. }  -(void)changeImage {  if (self.backgroundView.image == self.array[0]) {   self.backgroundView.image = self.array[1];  }else {   self.backgroundView.image = self.array[0];  } }  - (IBAction)pushClick:(id)sender {  [self changeImage];  CATransition *transtion = [[CATransition alloc] init];  transtion.type = @"push";  transtion.subtype = kCATransitionFromBottom;  transtion.startProgress = 0.5;  transtion.endProgress = 0.8;  [self.view.layer addAnimation:transtion forKey:nil]; }  /*  效果有好多種,上面代碼只貼出了其中一種,如果需要其他效果,只需要將  transtion.type = @"push";中的type改一下就行。  比如:  transtion.type = @"fade";  type的類型還有以下幾種:  fade,reveal,moveIn,cube,suckEffect,oglFlip,rippleEffect,pageCurl,pageCurl,cameraIrisHollowOpen,cameraIrisHollowClose,pageUnCurl,pageCurl,pageCurl,pageCurl   */  - (void)didReceiveMemoryWarning {  [super didReceiveMemoryWarning];  // Dispose of any resources that can be recreated. } 

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 青浦区| 工布江达县| 文登市| 辽阳县| 石泉县| 扎囊县| 鹤壁市| 阳城县| 体育| 龙陵县| 临桂县| 罗源县| 德令哈市| 罗江县| 施甸县| 璧山县| 东阳市| 湘阴县| 德江县| 元阳县| 兰西县| 安岳县| 永州市| 商河县| 织金县| 怀宁县| 井研县| 巩留县| 宝鸡市| 永修县| 青浦区| 潢川县| 准格尔旗| 崇礼县| 疏勒县| 邢台市| 三原县| 固原市| 宝鸡市| 鄢陵县| 青田县|