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

首頁 > 系統 > iOS > 正文

iOS圖片界面翻頁切換效果

2019-10-21 18:50:16
字體:
來源:轉載
供稿:網友

先看效果:

ios界面切換效果,ios圖片切換效果,ios圖片界面切換,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. } 

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


注:相關教程知識閱讀請移步到IOS開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 吴堡县| 团风县| 揭西县| 江川县| 娱乐| 丹巴县| 昔阳县| 德惠市| 东方市| 台中市| 广平县| 洞头县| 保德县| 乌拉特前旗| 浪卡子县| 谢通门县| 西平县| 永清县| 星座| 湘乡市| 邢台县| 哈尔滨市| 昌乐县| 永善县| 乃东县| 泽普县| 裕民县| 夏河县| 梓潼县| 韶关市| 太白县| 札达县| 澄迈县| 盘山县| 柏乡县| 黎川县| 哈尔滨市| 北碚区| 突泉县| 金川县| 金川县|