CollectionView就是這麼簡單!

来源:http://www.cnblogs.com/xueleixiaoqingnian/archive/2016/05/28/5536910.html
-Advertisement-
Play Games

UICollectionView 和 UICollectionViewController 類是iOS6 新引進的API,用於展示集合視圖,佈局更加靈活,可實現多列佈局,用法類似於UITableView 和 UITableViewController 類。 使用UICollectionView 必須 ...


UICollectionView 和 UICollectionViewController 類是iOS6 新引進的API,用於展示集合視圖,佈局更加靈活,可實現多列佈局,用法類似於UITableView 和 UITableViewController 類。

使用UICollectionView 必須實現UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout這三個協議。

 

1.首先我們創建CollectionView(代碼如下)

 

- (void)initCollectionView

{

// 我是用masnory進行屏幕適配的 這個坐標你也可以直接給出。

    [self.collectionView mas_makeConstraints:^(MASConstraintMaker *make) {

      make.top.equalTo(self.view.mas_bottom).offset(0);

        make.top.offset(0); //頂部間隔

        make.left.offset(0);//左邊

        make.bottom.offset(-10);//底部

        make.right.offset(0);//右邊

 // 

    }];

    self.collectionView.backgroundColor = [UIColor colorWithRed:241 green:241 blue:241 alpha:1];//背景色

    self.collectionView.contentInset = UIEdgeInsetsMake(10, 10, 10, 10);//插入內容的位置 與邊緣

    

    self.collectionView.delegate = self;代理協議

    self.collectionView.dataSource = self;數據源協議

    [self.collectionView registerClass:[CollectionViewCell class] forCellWithReuseIdentifier:@"cell"];

    創建新的cell

}

2.創建collectionview 必須要添加 UICollectionViewFlowLayout

//使用懶載入的方法

- (UICollectionView *)collectionView

{

    if (!_collectionView)

    {

        UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];

        flowLayout.itemSize = CGSizeMake((SCREEN_WIDTH - 50)/4, (SCREEN_WIDTH - 50)/4 + 20);

        flowLayout.minimumLineSpacing = 10; 每排的間隔

        flowLayout.minimumInteritemSpacing = 10; 每行的間隔

        

        self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:flowLayout];

        [self.view addSubview:self.collectionView];

    }

    return _collectionView;

}

3.接下來 我們需要新建一個類(CollectionviewCell)

 

cell.h 文件中呢  我們把需要展示的內容 都有屬性展示出來

比如 展示一個圖片 和文字

@property (nonatomic, strong) UIImageView *familyImageView;

@property (nonatomic, strong) UILabel *titleLabel;

所以  接下來在.m中寫這2個控制項(我的坐標都是masnory適配  也可以直接給出)

-(instancetype)initWithFrame:(CGRect)frame

{

         if (self = [super initWithFrame:frame])

    {

        self.familyImageView=[[UIImageView alloc] init];

         self.titleLabel = [[UILabel alloc] init];

        self.titleLabel.font = [UIFont systemFontOfSize:13];

        self.titleLabel.textAlignment=NSTextAlignmentCenter;

        [self.contentView addSubview:self.titleLabel];

        [self.contentView addSubview:self.familyImageView];

//make  是masnory的一個屬性 用於定義坐標位置

        [self.familyImageView mas_makeConstraints:^(MASConstraintMaker *make)

         {

             make.top.offset = 10;

             make.left.offset = 10;

             make.bottom.equalTo(self.titleLabel.mas_top).offset(-10);

             make.right.offset = -10;

         }];

        [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make)

         {

             make.left.offset = 0;

             make.bottom.offset = 0;

             make.right.offset = 0;

             make.height.offset = 20;    

         }];

    }

    return self;

}

 4.前提工作都基本做完了  接下來 就是實現協議代理的 方法 用來展示內容 顯示在屏幕中

//區數

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {

    return 1;

}

 //每個區顯示的小模塊

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {

    return 18;

}

 cell 上面展示的內容

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath

{

     CollectionViewCell*cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];

    註意上面這個CollectionViewCell 是你新建的cell  名稱是一樣的

 

    下麵就是展示你需要展示的內容了 直接用cell 打點調用就可以用屬性了。

    cell.familyImageView.image = _arr[indexPath.row];這是我之前定義的一個圖片

    cell.titleLabel.text=nameArr[indexPath.row];label

     

 

 

    return cell;

}

  cell的點擊方法    

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath

{

 

}

 

大致就是這些了,願猿友們早日迎娶白富美,走向人生peak!

 


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

-Advertisement-
Play Games
更多相關文章
  • 布爾類型其實可以算是一種特殊的數字,下麵是 help() 函數得到的幫助信息: Help on class bool in module __builtin__: class bool(int) | bool(x) -> bool | | Returns True when the argument ...
  • 1.什麼是Servlet? Servlet(Servlet Applet),全程Java Servlet,是用Java編寫的伺服器端程式,其主要功能在於互動式地瀏覽和修改數據,生成動態WEB內容。俠義的servlet是指Java語言實現的一個介面,廣義的servlet是指任何實現了這個servlet ...
  • 最初版本: #include<stdio.h> int checkPassword(); int add(int x,int y); int sub(int x,int y); int multi(int x,int y); float quo(float x1,float y1); int com ...
  • PHP實現簡易的模板引擎 1.MVC簡介 MVC 是一種使用 MVC(Model View Controller 模型 視圖 控制器)設計創建 Web 應用程式的模式(詳情自己百度): 1. Model(模型)表示應用程式核心(比如資料庫記錄列表)。 2. View(視圖)顯示數據(資料庫記錄) 3 ...
  • 三元運算 三元運算又叫三目運算,是對簡單的條件語句的縮寫,例如if判斷 # 標準if判斷語法 if 1 == 1: name = "yes" else: name = "no" # 如果 1==1 成立,name = "yes", 否則 name = "no" # 三元運算簡寫語法 name = " ...
  • 好幾年前我在做一些自動化的腳本時,腦子裡也閃過這樣的想法:能不能直接把瀏覽器的cookies取出來用呢? 直到昨天看到代碼《python模擬發送動彈》,想起來當年我也曾經有類似的想法沒能完成,那就優先拿這個練手,之後的代碼也會用這個功能。 直接從瀏覽器中取出cookies,有以下好處和用途: 1、不 ...
  • 一、String對象 1、string s; s.size(); //返回的是s中字元的個數,也是s的長度; //string對象最後沒有加空字元 //size()返回的是string::size_type類型,也就是unsigned類型,而不是int類型 2、兩個string對象的相加 strin ...
  • 這次的就直接發放代碼截圖吧,應該是用go語言做後臺一個簡易的聊天,這裡沒用到什麼特別的知識,最朴實的來實現效果,主要目的是分享下h5怎麼用websocket,go搭建websocket服務的主要部分。 go代碼部分: 1 // WebChat project main.go 2 package ma ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...