iOS開發-UI (十)UIScrollView 和 UIPageControl使用

来源:http://www.cnblogs.com/fcug/archive/2017/02/08/6380134.html
-Advertisement-
Play Games

知識點: 1.UIScrollView使用 2.UIPageControl使用 @interface RootViewController ()<UIScrollViewDelegate> UIScrollView使用 1.UIScrollView創建 2.常用屬性 1)滾動內容大小 2)是否分頁滾 ...


知識點:

1.UIScrollView使用

2.UIPageControl使用

@interface RootViewController ()<UIScrollViewDelegate>

=======================

UIScrollView使用

    1.UIScrollView創建

    2.常用屬性

      1)滾動內容大小

@property(nonatomic) CGSize contentSize

//實例化一個滾動視圖

    UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];

    //設置滾動區域的大小

    scrollView.contentSize = CGSizeMake(KScreenWidth * 3, KScreenHeigth *3);

 

 

      2)是否分頁滾動

@property(nonatomic,getter=isPagingEnabled) BOOL pagingEnabled

scrollView.pagingEnabled = YES;

 

 

      3)設置內容位置

@property(nonatomic) CGPoint contentOffset

//屏幕的寬度

#define KScreenWidth [UIScreen mainScreen].bounds.size.width

//屏幕的高度

#define KScreenHeigth [UIScreen mainScreen].bounds.size.height

//設置偏移量

    //scrollView.contentOffset = CGPointMake(KScreenWidth, KScreenHeigth);

    //帶動畫設置偏移量

    [scrollView setContentOffset:CGPointMake(KScreenWidth, KScreenHeigth) animated:YES];

 

      4)顯示水平滾動條

@property(nonatomic) BOOL showsHorizontalScrollIndicator

scrollView.showsHorizontalScrollIndicator= NO;

 

      5)顯示垂直滾動條

@property(nonatomic) BOOL showsVerticalScrollIndicator

scrollView.showsVerticalScrollIndicator = NO;

 

      6)彈簧效果

@property(nonatomic) BOOL bounces

//關閉彈簧效果

    scrollView.bounces = NO;

 

=======================

UIScrollView的常用代理方法

1)即將開始拖拽

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

2)即將停止拖拽

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView 

withVelocity:(CGPoint)velocity targetContentOffset:

(inout CGPoint *)targetContentOffset

3)已經停止拖拽

scrollViewDidEndDragging:(UIScrollView *)scrollView 

willDecelerate:(BOOL)decelerate

4)即將停止減速

- (void)scrollViewWillBeginDecelerating:(UIScrollView *)scrollView

5)已經停止減速

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView

6)點擊狀態欄回到頂部

- (BOOL)scrollViewShouldScrollToTop:(UIScrollView *)scrollView

7)已經滑到頂部

- (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView

8)放大縮小

- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView

9)縮放完畢

- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView 

withView:(UIView *)view atScale:(CGFloat)scale

#pragma mark- UIScrollViewDelegate

//準備開始拖拽

-(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{

    NSLog(@"scrollViewWillBeginDragging");

}

//準備停止拖拽

-(void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset{

    NSLog(@"scrollViewWillEndDragging");

}

//已經停止拖拽

-(void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{

    NSLog(@"scrollViewDidEndDragging");

}

//準備開始減速

-(void)scrollViewWillBeginDecelerating:(UIScrollView *)scrollView{

    NSLog(@"scrollViewWillBeginDecelerating");

}

//已經停止減速

-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{

    NSLog(@"偏移量為%@",NSStringFromCGPoint(scrollView.contentOffset));

    NSLog(@"scrollViewDidEndDecelerating");
}

//滾動過程中一直調用的代理方法

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

//    NSLog(@"偏移量為%@",NSStringFromCGPoint(scrollView.contentOffset));

//    NSLog(@"scrollViewDidScroll");

}

//允許點擊狀態欄滑動到頂部

-(BOOL)scrollViewShouldScrollToTop:(UIScrollView *)scrollView{

    return YES;

}

//已經滑動到頂部

-(void)scrollViewDidScrollToTop:(UIScrollView *)scrollView{

    //NSLog(@"scrollViewDidScrollToTop");

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"溫馨提示" message:@"已經滑到最頂" delegate:self cancelButtonTitle:@"確定" otherButtonTitles:nil, nil];

    //展示

    [alert show];
}


//設置代理

    _scrollView.delegate = self;

    //設置放大縮小的範圍

    _scrollView.minimumZoomScale = 0.5;

    _scrollView.maximumZoomScale = 2;

    [self.view addSubview:_scrollView];

#pragma mark- UIScrollViewDelegate

//返回需要放大的視圖

-(UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView{

    return _imageView;
}

//放大縮小完成之後的回調方法

-(void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(CGFloat)scale{

    //view -> 當前放大縮小的視圖對象

    //scale -> 放大縮小的繫數

    NSLog(@"scale = %f",scale);

    //判斷

    if (scale < 1.0) {

        //縮小

        view.center = CGPointMake(scrollView.frame.size.width/2.0, scrollView.frame.size.height/2.0);

    }else{

        //放大

        view.frame = CGRectMake(0, 0, view.frame.size.width, view.frame.size.height);
    }
}

 

 

 

 

 

=======================

UIPageControl

    1.UIPageControl創建方式

    2.常用屬性

   

  1)總頁數

@property(nonatomic) NSInteger numberOfPages

//設置總頁數

    _pageCtl.numberOfPages = 4;

@property(nonatomic,retain) UIColor *pageIndicatorTintColor

//設置當前頁碼顏色

    _pageCtl.currentPageIndicatorTintColor = [UIColor greenColor];

//其他頁碼顏色

    _pageCtl.pageIndicatorTintColor = [UIColor redColor];

      2)當前頁數

@property(nonatomic) NSInteger currentPage

@property(nonatomic,retain) UIColor *currentPageIndicatorTintColor

 

 

 

    3.結合UIScrollView

      1)利用代理協議完成UIPageControl當前頁的設置

#pragma mark- UIScrollViewDelegate

//停止減速

-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{

    if (scrollView.contentOffset.x == self.view.frame.size.width * 5) {

        //不能用帶動畫跳轉

        //當移動到第六個視圖的時候

        //瞬間跳轉到第二個視圖

        scrollView.contentOffset = CGPointMake(self.view.frame.size.width , 0);

    }else if (scrollView.contentOffset.x == 0){

        //當移動到第一個視圖的時候

        //瞬間跳轉到第五個視圖

        scrollView.contentOffset = CGPointMake(self.view.frame.size.width * 4 , 0);
    }
    //設置頁碼

    _pageCtl.currentPage = scrollView.contentOffset.x/self.view.frame.size.width - 1;
}

 

    

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 作者:Antonio Leiva 時間:Feb 8, 2017 原文鏈接:https://antonioleiva.com/generic-functions-kotlin/ Kotlin的一些特性組合起來與泛型混合使用創建函數可以極大的簡化你的編碼,且保證它的可讀性。 在Kotlin庫中,有幾個函 ...
  • 由OpenDigg 出品的iOS開源項目周報第七期來啦。我們的iOS開源周報集合了OpenDigg一周來新收錄的優質的iOS開源項目,方便iOS開發人員便捷的找到自己需要的項目工具等。 ...
  • 1.在新的地址添加一個用戶,並創建一個文件 打開新地址 ssh 用戶名@ ip 密碼:xxxx sudo adduser asamu 連敲三次 enter 之後輸入 n, 表示不要密碼,下麵填寫一些詳細信息(選填),輸入 y 繼續 su asamu 切換用戶, cd /home 可以看到用戶文件夾 ...
  • 最近項目需要針對微信、朋友圈、QQ、QQ空間集成友盟分享的功能,說實話,我也是第一次做,期間碰到過很多問題,這篇隨筆就來寫一下我是怎麼集成友盟分享的,還有碰到哪些問題,都是怎樣解決的! 其實集成友盟並不是很難,跟著集成文檔一步一步走下來就可以,而且下載的友盟SDK會附帶Demo,但是Demo中有很... ...
  • 熱更新方案:使用騰訊的tinker,對於加固的apk(360和應用寶2個渠道)不支持 不加固的apk:使用熱更新方案,無需安裝,所有不加固的文件共用一個更新包 加固的apk:使用下載新的完整apk的方案,重新安裝,後臺管理補丁時先上傳加固的補丁apk再上傳不加固共用的補丁文件 增加補丁配置文件(每次 ...
  • /** * bitmap 圖片縮放到指定大小 */ public static Bitmap resizeImage(Bitmap bitmap, int w, int h) { Bitmap BitmapOrg = bitmap; int width = BitmapOrg.getWidth();... ...
  • 個人微信公眾號:zhaoyanjun125 , 歡迎關註 QQ交流群:431048982 ...
  • Paint類的常用的方法 1.setColor方法,用於設置畫筆的顏色,public void setColor(int color)//參數color為顏色值,也可以使用Color類定義的顏色Color.BLACK:黑色Color.BLUE:藍色Color.CYAN:青綠色Color.DKGRAY ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...