forked from HabitRPG/habitica-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageOverlayView.swift
66 lines (57 loc) · 1.94 KB
/
ImageOverlayView.swift
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
//
// ImageOverlayView.swift
// Habitica
//
// Created by Phillip Thelen on 13.04.18.
// Copyright © 2018 HabitRPG Inc. All rights reserved.
//
import UIKit
class ImageOverlayView: HabiticaAlertController {
private var imageView = NetworkImageView()
private var imageHeightConstraint: NSLayoutConstraint?
var imageName: String? {
didSet {
if let imageName = imageName {
imageView.setImagewith(name: imageName)
}
}
}
var imageHeight: CGFloat? {
get {
return imageHeightConstraint?.constant
}
set {
imageHeightConstraint?.constant = newValue ?? 0
updateViewConstraints()
}
}
var image: UIImage? {
return imageView.image
}
init(imageName: String, title: String?, message: String? = nil) {
super.init()
self.title = title
self.message = message
self.imageName = imageName
setupImageView()
imageView.setImagewith(name: imageName)
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
setupImageView()
}
private func setupImageView() {
contentView = imageView
imageView.contentMode = .center
imageHeightConstraint = NSLayoutConstraint(item: imageView,
attribute: NSLayoutConstraint.Attribute.height,
relatedBy: NSLayoutConstraint.Relation.equal,
toItem: nil,
attribute: NSLayoutConstraint.Attribute.notAnAttribute,
multiplier: 1,
constant: 100)
if let constraint = imageHeightConstraint {
imageView.addConstraint(constraint)
}
}
}