Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathHouseCell.swift
More file actions
Latest commit
100 lines (77 loc) · 3.41 KB
/
Copy pathHouseCell.swift
File metadata and controls
100 lines (77 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Created by Luc Dion on 2017-10-31.
import UIKit
import PinLayout
classHouseCell:UICollectionViewCell{
staticletreuseIdentifier="HouseCell"
privateletheaderView=UIView()
privateletnameLabel=UILabel()
privateletmainImage=UIImageView()
privateletfooterView=UIView()
privateletpriceLabel=UILabel()
privateletdistanceLabel=UILabel()
privateletmargin:CGFloat=8
overrideinit(frame:CGRect){
super.init(frame: frame)
backgroundColor =.white
// HEADER
headerView.backgroundColor =.pinLayoutColor
contentView.addSubview(headerView)
nameLabel.font =UIFont.systemFont(ofSize:24)
nameLabel.textColor =.white
headerView.addSubview(nameLabel)
// IMAGE
mainImage.backgroundColor =.black
mainImage.contentMode =.scaleAspectFill
mainImage.clipsToBounds =true
contentView.addSubview(mainImage)
// FOOTER
footerView.backgroundColor =UIColor.pinLayoutColor.withAlphaComponent(0.2)
contentView.addSubview(footerView)
footerView.addSubview(priceLabel)
distanceLabel.textAlignment =.right
footerView.addSubview(distanceLabel)
}
requiredinit?(coder aDecoder:NSCoder){
fatalError("init(coder:) has not been implemented")
}
func configure(house:House){
nameLabel.text = house.name
priceLabel.text = house.price
distanceLabel.text ="\(house.distance) KM"
distanceLabel.textAlignment =.right
mainImage.download(url: house.mainImageURL)
mainImage.contentMode =.scaleAspectFill
setNeedsLayout()
}
overridefunc layoutSubviews(){
super.layoutSubviews()
layout()
}
privatefunc layout(){
headerView.pin.top().horizontally(pin.safeArea).height(40)
nameLabel.pin.vCenter().horizontally(margin).sizeToFit(.width)
mainImage.pin.below(of: headerView).horizontally(pin.safeArea).height(300)
footerView.pin.below(of: mainImage).horizontally(pin.safeArea)
priceLabel.pin.top().horizontally().margin(margin).sizeToFit(.widthFlexible)
distanceLabel.pin.top().after(of: priceLabel).right().margin(margin).sizeToFit(.width)
footerView.pin.wrapContent(.vertically, padding: margin)
contentView.pin.height(footerView.frame.maxY)
}
overridefunc sizeThatFits(_ size:CGSize)->CGSize{
contentView.pin.width(size.width)
layout()
return contentView.frame.size
}
}