added iOS source code
[wl-app.git] / iOS / WolneLektury / Screens / Search / Cells / SearchFilterCollectionViewCell.swift
1 //
2 //  SearchFilterCollectionViewCell.swift
3 //  WolneLektury
4 //
5 //  Created by Pawel Dabrowski on 13/06/2018.
6 //  Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
7 //
8
9 import UIKit
10
11 class SearchFilterCollectionViewCell: UICollectionViewCell {
12
13     @IBOutlet weak var closeImageView: UIImageView!
14     @IBOutlet weak var bgView: UIView!
15     @IBOutlet weak var titleLabel: UILabel!
16     override func awakeFromNib() {
17         super.awakeFromNib()
18         bgView.layer.cornerRadius = 12
19         bgView.layer.borderColor = UIColor.white.cgColor
20         bgView.layer.borderWidth = 1
21         closeImageView.tintColor = .white
22     }
23     
24     func setup(categoryModel: CategoryModel) {
25         titleLabel.text = categoryModel.name
26     }
27 }