IOS新手引導頁的實現,源碼。

來源:互聯網
上載者:User

標籤:

 1 /*1.在Main.storyboard中找到,ScrollView和PageControl並添加到ViewController中。 2 2.在ScrollView中添加ImageView,新手引導頁有幾個圖片就添加幾個,然後設定ImageView的image,就是準備好的圖片。 3 3.要設定好ScrollViewscroll View中的Left和View中的Width,使其等於圖片的大小,還有就是圖片大小的起始位置,第一張為(0,0),第二張的起始位置應該是(螢幕的寬度,0),以此類推。 4 4.添加PageControl,這個的起始位置要手動的設定。 5 5.設定同步*/ 6 //設定UIPageControl跟隨UIScrollView的變化而變化 7 -(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{ 8     _pc1.currentPage = scrollView.contentOffset.x / 424; 9 }10 //要使UIScrollView跟隨UIPageControl變化的話,必須加監聽,要寫一個方法11 -(void)changeScrollView:(UIPageControl *)uip112 {13      [_sv1 setContentOffset:CGPointMake(424 * uip1.currentPage, 0) animated:YES];14 }15 16 源碼:17 18 #import "ViewController.h"19 20 @interface ViewController ()21 @property (weak, nonatomic) IBOutlet UIScrollView *sv1;22 @property (weak, nonatomic) IBOutlet UIPageControl *pc1;23 24 @end25 26 @implementation ViewController27 28 - (void)viewDidLoad {29     [super viewDidLoad];30     //必須手動設定內容視圖的大小31 ?    _sv1.contentSize = CGSizeMake(424*3,736);32     //是否分頁33     _sv1.pagingEnabled = YES;34     //滾動時是否顯示水平捲軸35     _sv1.showsHorizontalScrollIndicator = NO;36     //滾動時是否顯示垂直捲軸37     _sv1.showsVerticalScrollIndicator=NO;38     //為了設定UIPageControl,要用到代理方法判斷是否移動39     _sv1.delegate = self;40     //要使UIScrollView跟隨UIPageControl變化的話,必須加監聽,要寫一個方法41     [_pc1 addTarget:self action:@selector(changeScrollView:) forControlEvents: UIControlEventTouchUpInside];42 }43 //設定UIPageControl跟隨UIScrollView的變化而變化44 -(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{45     _pc1.currentPage = scrollView.contentOffset.x / 424;46 }47 //要使UIScrollView跟隨UIPageControl變化的話,必須加監聽,要寫一個方法48 -(void)changeScrollView:(UIPageControl *)uip149 {50      [_sv1 setContentOffset:CGPointMake(424 * uip1.currentPage, 0) animated:YES];51 }52 - (void)didReceiveMemoryWarning {53     [super didReceiveMemoryWarning];54     // Dispose of any resources that can be recreated.55 }56 57 @end

 

IOS新手引導頁的實現,源碼。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.