UIScrollView,UICollectionView 和UITableView的屬性和方法

来源:http://www.cnblogs.com/xuan-yuan/archive/2017/09/14/7520006.html
-Advertisement-
Play Games

UIScrollView,UICollectionView 和UITableView 三者之間的關係:UIScrollView是 UICollectionView 和 UITableView 的父類. UIScrollView 一個可以滾動的視圖控制項,可以用來查看比屏幕大很多的視圖內容. 常用屬性: ...


UIScrollView,UICollectionView 和UITableView

三者之間的關係:UIScrollView是 UICollectionView 和 UITableView 的父類.

UIScrollView

一個可以滾動的視圖控制項,可以用來查看比屏幕大很多的視圖內容.

常用屬性:

contentOffset:當前顯示的區域相對於frame頂點的區域

contentSize:屏幕能滾動到的最大區域(畫布)

contentInset:scrollview的contentview的頂點相對於scrollview的位置

directionalLockEnabled:是否禁止在某一方向的滾動

bounces:是否有彈框效果

alwaysBounceVertical:是否在垂直方向有反彈效果

alwaysBounceHorizontal:是否在水平方向上有反彈效果

pagingEnabled:是否有分頁效果

scrollEnabled:是否能滾動

showsHorizontalScrollIndicator:是否顯示水平滾動條

showsVerticalScrollIndicator:是否顯示垂直滾動條

scrollIndicatorInsets:滾動指示器從封閉滾動視圖中被嵌入的距離

indicatorStyle:滾動控制器的風格

decelerationRate:用戶離開屏幕後滾動的減速速率

indexDisplayMode://數據顯示方式

tracking:用戶是否觸摸內容並初始化滾動

dragging:是否開始滾動

decelerating:手指在離開屏幕後,屏幕是否繼續滾動

delaysContentTouches:滾動視圖是否延遲處理觸摸下壓事件

canCancelContentTouches:觸摸內容視圖是否總是跟蹤

minimumZoomScale:最小縮放比例

maximumZoomScale:最大縮放比例

zoomScale:縮放比例

bouncesZoom:規定滾動視圖是否在縮放超出最大值和最小值動畫時播放內容縮放動畫

zooming:是否縮放

zoomBouncing:縮放超出縮放限制

scrollsToTop:是否滾動到頂部

panGestureRecognizer:當前用於滑動手勢的手勢識別器

pinchGestureRecognizer:當前用於擴張/收縮手勢的手勢識別器

directionalPressGestureRecognizer:按壓手勢移動方向

keyboardDismissMode:鍵盤消失方式

refreshControl:更新控制

常用方法

- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated;//設定當前顯示的區域相對於frame頂點的區域

- (void)scrollRectToVisible:(CGRect)rect animated:(BOOL)animated;//滾動內容的指定區域以便使內容在屏幕中可見

- (void)flashScrollIndicators; //短暫地顯示滾動指示器

- (BOOL)touchesShouldBegin:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event inContentView:(UIView *)view;//(方法被滾動視圖調用)以調整滾動視圖處理滾動手勢的方式

 - (BOOL)touchesShouldCancelInContentView:(UIView *)view;//觸摸是否可以取消

- (void)setZoomScale:(CGFloat)scale animated:(BOOL)animated ;//設置縮放比例

- (void)zoomToRect:(CGRect)rect animated:(BOOL)animated;//將內容視圖縮放到指定的Rect中

UICollectionView

常用屬性:

collectionViewLayout:佈局

prefetchingEnabled:是否預載入

backgroundView:背景視圖

allowsSelection:是否允許 item可以點擊

allowsMultipleSelection:是否允許多選

indexPathsForSelectedItems:選中的 item

numberOfSections:顯示多少 item

visibleCells:界面上顯示的 cell

indexPathsForVisibleItems:當前可視界面上顯示的 item 的 indexPath

remembersLastFocusedIndexPath:是否記住最後操作的 indexPath

常用方法:

- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout;//用layout來初始化佈局

- (instancetype)initWithCoder:(NSCoder *)aDecoder://通過 xib 文件來初始化

- (void)registerClass:(nullable Class)cellClass forCellWithReuseIdentifier:(NSString *)identifier;//通過類來註冊

- (void)registerNib:(nullable UINib *)nib forCellWithReuseIdentifier:(NSString *)identifier;//通過 xib 來註冊

- (void)registerClass:(nullable Class)viewClass forSupplementaryViewOfKind:(NSString *)elementKind withReuseIdentifier:(NSString *)identifier;//用 class來註冊一個帶補充視圖的類

- (void)registerNib:(nullable UINib *)nib forSupplementaryViewOfKind:(NSString *)kind withReuseIdentifier:(NSString *)identifier;//通過 xib 來註冊一個帶補充視圖的類

- (UICollectionViewCell *)dequeueReusableCellWithReuseIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath;//通過identifier來複用 cell

- (UICollectionReusableView *)dequeueReusableSupplementaryViewOfKind:(NSString *)elementKind withReuseIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath;//通過 Identifier 獲取復用 ReusableView

- (NSArray<NSIndexPath *> *)indexPathsForSelectedItems;//選中的 items 的 indexPath

- (void)selectItemAtIndexPath:(nullable NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UICollectionViewScrollPosition)scrollPosition;//指定選中的 item 的動畫和位置

- (void)deselectItemAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated;//取消選中的 item

- (void)reloadData; //刷新數據

- (void)setCollectionViewLayout:(UICollectionViewLayout *)layout animated:(BOOL)animated; //是否動態設置佈局

- (void)setCollectionViewLayout:(UICollectionViewLayout *)layout animated:(BOOL)animated completion:(void (^ __nullable)(BOOL finished))completion ;//是否動態設置佈局並回調

- (UICollectionViewTransitionLayout *)startInteractiveTransitionToCollectionViewLayout:(UICollectionViewLayout *)layout completion:(nullable UICollectionViewLayoutInteractiveTransitionCompletion)completion;//切換 layout

- (void)finishInteractiveTransition;//layout 切換完成

- (void)cancelInteractiveTransition;//取消切換 layout

- (NSInteger)numberOfSections;//組

- (NSInteger)numberOfItemsInSection:(NSInteger)section;//每組有多少 items

- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath;//返回 item 的佈局屬性

- (UICollectionViewLayoutAttributes *)layoutAttributesForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;//返回重用視圖的佈局屬性

- (NSIndexPath *)indexPathForItemAtPoint:(CGPoint)point;//點擊的 item 的 indexpath

- (NSIndexPath *)indexPathForCell:(UICollectionViewCell *)cell;//cell 的 indexPath

- (UICollectionViewCell *)cellForItemAtIndexPath:(NSIndexPath *)indexPath;//indexPath 對應的 cell

- (NSArray<__kindof UICollectionViewCell *> *)visibleCells;//當前可見視圖 celsl 的數組

- (NSArray<NSIndexPath *> *)indexPathsForVisibleItems;//當前可見視圖的 items 的 indexPath 的數組

- (UICollectionReusableView *)supplementaryViewForElementKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath;//indexPath 對應的重用視圖

- (NSArray<UICollectionReusableView *> *)visibleSupplementaryViewsOfKind:(NSString *)elementKind;//當前可見的重用視圖數組

- (NSArray<NSIndexPath *> *)indexPathsForVisibleSupplementaryElementsOfKind:(NSString *)elementKind;//當前可見輔助視圖的 indexPath 的數組

- (void)scrollToItemAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UICollectionViewScrollPosition)scrollPosition animated:(BOOL)animated//滾動到 indexPath 的 item;

- (void)insertSections:(NSIndexSet *)sections;//插入組

- (void)deleteSections:(NSIndexSet *)sections;//刪除組

- (void)reloadSections:(NSIndexSet *)sections;//刷新某一組

- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection;//移動組

- (void)insertItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;//插入 items

- (void)deleteItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;//刪除 items

- (void)reloadItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;//刷新 items

- (void)moveItemAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath;//移動 item

 - (void)performBatchUpdates:(void (^ __nullable)(void))updates completion:(void (^ __nullable)(BOOL finished))completion;//一次性完成插入/刪除等操作

- (BOOL)beginInteractiveMovementForItemAtIndexPath:(NSIndexPath *)indexPath ;//是否允許排序

- (void)updateInteractiveMovementTargetPosition:(CGPoint)targetPosition;//更新 item 的位置

- (void)endInteractiveMovement;//移動完成後

- (void)cancelInteractiveMovement;//取消更新(恢復到原始的位置)

UITableView

 常用屬性:

style:tableview 的樣式

rowHeight:cell行高

sectionHeaderHeight:組頭行高

sectionFooterHeight:組尾行高

estimatedRowHeight:預定義行高

estimatedSectionHeaderHeight:預定義組頭高

estimatedSectionFooterHeight:預定義組尾高

separatorInset:分割線的偏移量

backgroundView:背景視圖

numberOfSections:組數

visibleCells:當前可見的 cell

indexPathsForVisibleRows:可見 cell 的 indexPath

 editing:編輯

allowsSelection:非編譯狀態下是否允許選中

allowsSelectionDuringEditing//編譯狀態下允許某行可以選中

allowsMultipleSelection:是否允許多選

allowsMultipleSelectionDuringEditing:在編譯狀態下是否允許多選

indexPathForSelectedRow:選中的 cell 的 indexPath

indexPathsForSelectedRows:選中的多個的 cell 的 indexPath

sectionIndexMinimumDisplayRowCount;顯示 rowcount 的時候的最小 sectionIndex

sectionIndexColor:改變某一行的顏色

sectionIndexBackgroundColor:改變某一行的背景色

sectionIndexTrackingBackgroundColor:選中某部分的背景色

separatorColor:選中 cell 分割線的顏色

separatorEffect:毛玻璃效果

tableHeaderView:頭視圖

tableFooterView:尾視圖

remembersLastFocusedIndexPath:記錄最後一個焦點的 indexPath

 常用方法:

- (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style;帶 frame 的初始化方法

- (instancetype)initWithCoder:(NSCoder *)aDecoder;//通過 IB 初始化

- (void)reloadData;//刷新數據

- (void)reloadSectionIndexTitles;//刷新索引欄

- (NSInteger)numberOfRowsInSection:(NSInteger)section;//每組有多少行

- (CGRect)rectForSection:(NSInteger)section;  //獲取某個組的位置和大小

- (CGRect)rectForHeaderInSection:(NSInteger)section;//獲取某個組的組頭的位置和大小

- (CGRect)rectForFooterInSection:(NSInteger)section;//獲取某個組的組尾的位置和大小

- (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath;//獲取某一行的位置和大小

- (NSIndexPath *)indexPathForRowAtPoint:(CGPoint)point;   //由點確定在該行的 indexPath

- (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell;//獲取 cell 的 indexPath

- (NSArray<NSIndexPath *> *)indexPathsForRowsInRect:(CGRect)rect; //獲取多行的 indexPath 數組

- (__kindof UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath;   //設置 cell

- (UITableViewHeaderFooterView *)headerViewForSection:(NSInteger)section;//設置組頭

- (UITableViewHeaderFooterView *)footerViewForSection:(NSInteger)section;//設置組尾

- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;//將某行滾動到特點位置

- (void)scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;//將選中的行滾動到特定位置

- (void)beginUpdates;//和下麵方法成對使用,表示開始動態改變某一行

- (void)endUpdates;//和上面的方法成對使用,表示動態改變某行結束

- (void)insertSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;//動態插入一行

- (void)deleteSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;//動態刪除一組

- (void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;//刷新一組

- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection;//移動某一組

- (void)insertRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;//插入多行

- (void)deleteRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;//刪除多行

- (void)reloadRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;//刷新多行

- (void)moveRowAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath;//移動某一行

- (void)selectRowAtIndexPath:(nullable NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition;//選中行滾動到特定位置

- (void)deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated;//取消選中

- (UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier;//設置 cell 的重用標識符

- (UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath;//設置某些 cell 的重用標識符

- (UITableViewHeaderFooterView *)dequeueReusableHeaderFooterViewWithIdentifier:(NSString *)identifier;//設置頭尾視圖的重用標識符

- (void)registerNib:(nullable UINib *)nib forCellReuseIdentifier:(NSString *)identifier;//通過 xib註冊帶重用標識符的 cell

- (void)registerClass:(nullable Class)cellClass forCellReuseIdentifier:(NSString *)identifier;//通過類註冊帶重用標識符的 cell

- (void)registerNib:(nullable UINib *)nib forHeaderFooterViewReuseIdentifier:(NSString *)identifier;通過 xib 註冊重用的cell頭尾視圖

- (void)registerClass:(nullable Class)aClass forHeaderFooterViewReuseIdentifier:(NSString *)identifier;通過類註冊重用的 cell 的頭尾視圖

附件:


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

-Advertisement-
Play Games
更多相關文章
  • 1.使用 typeof bar "object" 來確定 bar 是否是對象的潛在陷阱是什麼?如何避免這個陷阱? 儘管 typeof bar "object" 是檢查 bar 是否對象的可靠方法,令人驚訝的是在JavaScript中 null 也被認為是對象! 因此,令大多數開發人員驚訝的是,下麵的 ...
  • Vue2.0搭建Vue腳手架(vue-cli) 在網上找了很多的搭建腳手架教程,但都不求甚解。終於找到2個比較好的教程,讀者可對比閱讀1和2,在這裡分享給大家,希望對初學者有所幫助。ps:高手請繞道。 Vue是近兩年來比較火的一個前端框架(漸進式框架吧),與reactjs和angularjs三國鼎立 ...
  • jQuery滑鼠事件之click與dbclick事件 用交互操作中,最簡單直接的操作就是點擊操作。jQuery提供了兩個方法一個是click方法用於監聽用戶單擊操作,另一個方法是dbclick方法用於監聽用戶雙擊操作。這兩個方法的用法是類似的,下麵以click()事件為例 使用上非常簡單: 方法一: ...
  • Vue2.0搭建Vue腳手架(vue-cli) 在網上找了很多的搭建腳手架教程,但都不求甚解。終於找到2個比較好的教程,讀者可對比閱讀1和2,在這裡分享給大家,希望對初學者有所幫助。ps:高手請繞道。 說明:此文章參考了網上一些前人的技術分享,自己拿過來總結一下。此文章是基於webpack構建的vu ...
  • 學習過java基礎,最近趁著大量課餘時間想學習Android開發。百度很多資料Android studio,由Google開發的開發工具,那就不需要再多說。對於初學者的我來說,一定足夠用了。此文主要介紹自己下載、安裝、第一次使用遇到的問題。 開發環境 物理機:Windows8.1專業版 Androi ...
  • 目錄 1、CALayer(父類) 2、CAShapeLayer(形狀/畫布) 3、CAGradientLayer(漸變層) 順序為 接觸/學習 順序 1、CALayer(父類) 1-1)、幾個常用屬性 2、CAShapeLayer 2-1)、使用參照 《iOS:繪圖》 -> “1、UIBezierP ...
  • 前言:畢業之後在高薪的後廠村互聯網公司和生活工作平衡的體制內之間糾結了好久,最後選擇了後者,畢竟後廠村只要有技術什麼時候都能去,體制內基本上除了應屆生這次機會基本上就再也進不去了,社招就算進去也沒有編製。基於“面對兩難選擇時,選擇沒有體驗過的那個”的原則,選擇了體制,然後有幸被分配到了移動端開發的部 ...
  • 最近在優化項目雖說小優化一直在持續,大版本的優化也進行了兩個版本了但是bug列表依舊血淋淋的擺在那裡。有的看一眼也能找到問題所在但是有的就是想破頭也不知道問題在哪裡,畢竟整個項目經過了N個人的手代碼風格迥異閱讀起來也會有不小的困難,因此在這分享一下解決這些個bug之間遇到的問題和一些看似實用的方法。 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...