Swift UICollectionView

UICollectionView是一種新的數(shù)據(jù)展示方式痘绎,簡(jiǎn)單來說可以把他理解成多列的UITableView(請(qǐng)一定注意這是UICollectionView的最最簡(jiǎn)單的形式)尿招。

下面先通過一個(gè)簡(jiǎn)單的例子展示一下

 class SecondViewController: UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout {
     
    let screenWidth = UIScreen .mainScreen().bounds.width
    let screenHeight = UIScreen .mainScreen().bounds.height
    let idenContentString = "idenContentString"
    let headIdenString = "headIdenString"
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        self.automaticallyAdjustsScrollViewInsets = true
        self .makeUICollectionView()
        
    }
    
    func makeUICollectionView()
    {
        //  設(shè)置 layOut
        let layout = UICollectionViewFlowLayout()
        layout.scrollDirection = UICollectionViewScrollDirection.Vertical  //滾動(dòng)方向
        layout.itemSize = CGSizeMake((screenWidth - 30)/2, 80)
        // 設(shè)置CollectionView
        let ourCollectionView : UICollectionView = UICollectionView(frame: CGRectMake(0, 0, screenWidth, screenHeight), collectionViewLayout: layout)
        ourCollectionView.delegate = self
        ourCollectionView.dataSource = self
        ourCollectionView.backgroundColor = UIColor.whiteColor()
        ourCollectionView .registerClass(MyTestCollectionViewCell.self, forCellWithReuseIdentifier: idenContentString)
        
        self.view .addSubview(ourCollectionView)

    }
    
    //MARK: UICollectionViewDataSource
    
    func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
        
        return 1
    }
    
    func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 60
    }
    
    func  collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
        
        let cell  = collectionView.dequeueReusableCellWithReuseIdentifier(idenContentString, forIndexPath: indexPath) as! MyTestCollectionViewCell
        // 備注我們的小標(biāo)題
        let indexString = String(indexPath.row)
        cell.myLabel.text = "我的小標(biāo)題_" + indexString
        // 獲取隨機(jī)顏色
        let colorValue1 :CGFloat!  = CGFloat(CGFloat(random())/CGFloat(RAND_MAX))
        let colorValue2 :CGFloat!  = CGFloat(CGFloat(random())/CGFloat(RAND_MAX))
        let colorValue3 :CGFloat!  = CGFloat(CGFloat(random())/CGFloat(RAND_MAX))
        cell.myImageView.backgroundColor = UIColor(red: colorValue1, green: colorValue2, blue: colorValue3, alpha: 1.0)
        
        return cell;
        
    }
    //MARK:UICollectionViewDelegate
    
    func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) {
        print("tap ==\(indexPath.row)")
    }
    
    //MARK:UICollectionViewDelegateFlowLayout
    func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets{
        return UIEdgeInsetsMake(5, 10, 5, 10)
    }
 }

在自定義的CollctionViewCell中

 class MyTestCollectionViewCell: UICollectionViewCell {

    override init(frame: CGRect) {
        
        super.init(frame: frame)
    
        // 由于測(cè)試,先不考慮 自動(dòng)布局 后期可以考慮 SnapKit
        self.myLabel.frame = CGRectMake(10, 60, frame.size.width - 20, 20)
        self.myImageView.frame = CGRectMake(10, 0, frame.size.width - 20, 60)
        
        self.contentView.backgroundColor = UIColor(red: 230/255.0, green: 230/255.0, blue: 230/255.0, alpha: 1.0)
        self.contentView .addSubview(self.myLabel)
        self.contentView .addSubview(self.myImageView)
  
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    
    var myLabel:UILabel = {
    
        let label = UILabel()
        label.text = "我的小標(biāo)題"
        label.textAlignment = .Center
        label.font = UIFont.systemFontOfSize(12)
        return label
    
    }()
    
    var myImageView:UIImageView = {
        
        let imageView = UIImageView()
        imageView.backgroundColor = UIColor.lightGrayColor()
        return imageView
    
    }()
    
}
效果圖
UICollectionViewLayout

UICollectionViewLayout 是UICollectionView和UITableView最大的不同。UICollectionViewLayout可以說是UICollectionView的大腦和中樞,它負(fù)責(zé)了將各個(gè)cell、Supplementary View和Decoration Views進(jìn)行組織担钮,為它們?cè)O(shè)定各自的屬性,包括但不限于:位置尤仍、尺寸箫津、透明度、層級(jí)關(guān)系宰啦、形狀苏遥,等等。

  • itemSize 它定義了每一個(gè)item的大小赡模。通過設(shè)定itemSize可以全局地改變所有cell的尺寸田炭,如果想要對(duì)某個(gè)cell制定尺寸,可以使用- sizeForItemAtIndexPath indexPath:方法.

  • 間隔:可以指定item之間的間隔和每一行之間的間隔漓柑,和size類似教硫,有全局屬性,也可以對(duì)每一個(gè)item和每一個(gè)section做出設(shè)定:

     public var minimumLineSpacing: CGFloat
     public var minimumInteritemSpacing: CGFloat
    
  • 滾動(dòng)方向:由屬性scrollDirection確定scroll view的方向辆布,將影響Flow Layout的基本方向和由header及footer確定的section之間的寬度

    public enum UICollectionViewScrollDirection : Int {
    
            case Vertical
            case Horizontal
    }
    
  • Header和Footer尺寸: 同樣地分為全局和部分瞬矩。需要注意根據(jù)滾動(dòng)方向不同,header和footer的高和寬中只有一個(gè)會(huì)起作用锋玲。垂直滾動(dòng)時(shí)section間寬度為該尺寸的高景用,而水平滾動(dòng)時(shí)為寬度起作用

      public var headerReferenceSize: CGSize
      public var footerReferenceSize: CGSize
      public var sectionInset: UIEdgeInsets
    

以及它的代理UICollectionViewDelegateFlowLayout

UICollectionViewCell

仔細(xì)一看它和UITableViewCell還是有很多區(qū)別的

public class UICollectionViewCell : UICollectionReusableView {

    public var contentView: UIView { get } 

    public var selected: Bool
    public var highlighted: Bool

    public var backgroundView: UIView?
    public var selectedBackgroundView: UIView?
}

首先注意它繼承的是UICollectionReusableView,和TableViewCell繼承UIView是不一樣的。

UICollectionReusableView
  • 狀態(tài)控制要比以前靈活一些嫩絮,對(duì)應(yīng)的高亮和選中狀態(tài)分別由highlightedselected兩個(gè)屬性表示丛肢。
  • cell被選中時(shí)的背景更加靈活了,所有的cell中的子view剿干,也包括contentView中的子view蜂怎,在當(dāng)cell被選中時(shí),會(huì)自動(dòng)去查找view是否有被選中狀態(tài)下的改變置尔。比如在contentView里加了一個(gè)normalselected指定了不同圖片的imageView杠步,那么選中這個(gè)cell的同時(shí)這張圖片也會(huì)從normal變成selected,而不需要額外的任何代碼榜轿。
Header & Footer

也是先注冊(cè)

//注冊(cè)一個(gè)headView
 ourCollectionView .registerClass(UICollectionReusableView.self, forSupplementaryViewOfKind:UICollectionElementKindSectionHeader, withReuseIdentifier: headIdenString)

定義其大小和內(nèi)容

   //返回HeadView的寬高
    func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize{
        
        return CGSize(width: ScreenWidth, height: 50)
    }
    
    //返回自定義HeadView或者FootView幽歼,我這里以headview為例
    func collectionView(collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath) -> UICollectionReusableView{
        var headView = UICollectionReusableView()
        if kind == UICollectionElementKindSectionHeader
        {
            headView = collectionView.dequeueReusableSupplementaryViewOfKind(kind, withReuseIdentifier: headIdenString, forIndexPath: indexPath)
            headView.backgroundColor = UIColor.redColor()

        }
        return headView
    }

效果圖如下,當(dāng)然那個(gè)numberOfSectionsInCollectionView進(jìn)行了改變

效果圖谬盐,section換了

記住headview也是繼承UICollectionReusableView的

總的來說甸私,UICollectionView還有很多可以挖掘的功能,我們可以在API中充分發(fā)掘飞傀,它也會(huì)是我們后期常用的View皇型,繼續(xù)加油····

備注參考

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UICollectionReusableView_class/index.html#//apple_ref/occ/instm/UICollectionReusableView/
http://www.onevcat.com/2012/08/advanced-collection-view/

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市砸烦,隨后出現(xiàn)的幾起案子弃鸦,更是在濱河造成了極大的恐慌,老刑警劉巖幢痘,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件唬格,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡颜说,警方通過查閱死者的電腦和手機(jī)购岗,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來门粪,“玉大人藕畔,你說我怎么就攤上這事∽矗” “怎么了注服?”我有些...
    開封第一講書人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)措近。 經(jīng)常有香客問我溶弟,道長(zhǎng),這世上最難降的妖魔是什么瞭郑? 我笑而不...
    開封第一講書人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任辜御,我火速辦了婚禮,結(jié)果婚禮上屈张,老公的妹妹穿的比我還像新娘擒权。我一直安慰自己袱巨,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開白布碳抄。 她就那樣靜靜地躺著愉老,像睡著了一般。 火紅的嫁衣襯著肌膚如雪剖效。 梳的紋絲不亂的頭發(fā)上嫉入,一...
    開封第一講書人閱讀 49,764評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音璧尸,去河邊找鬼咒林。 笑死,一個(gè)胖子當(dāng)著我的面吹牛爷光,可吹牛的內(nèi)容都是我干的垫竞。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼蛀序,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼件甥!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起哼拔,我...
    開封第一講書人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤引有,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后倦逐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體譬正,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年檬姥,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了曾我。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡健民,死狀恐怖抒巢,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情秉犹,我是刑警寧澤蛉谜,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站崇堵,受9級(jí)特大地震影響睁枕,放射性物質(zhì)發(fā)生泄漏把跨。R本人自食惡果不足惜混槐,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一宝鼓、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦涵紊、人聲如沸傍妒。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)颤练。三九已至,卻和暖如春塘幅,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背尿贫。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來泰國(guó)打工电媳, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人庆亡。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓匾乓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親又谋。 傳聞我的和親對(duì)象是個(gè)殘疾皇子拼缝,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容