-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathNibLoader.swift
108 lines (86 loc) · 3.44 KB
/
NibLoader.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
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
101
102
103
104
105
106
107
108
//
// NibLoader.swift
// NibLoader
//
// Created by Domas on 10/02/2017.
// Copyright © 2016 Trafi. All rights reserved.
//
import UIKit
// MARK: - Public
public extension NibLoadable where Self: UIView {
var nibLoader: IBNibLoader<Self> { return IBNibLoader(self) }
}
public struct IBNibLoader<NibLoadableView: NibLoadable> where NibLoadableView: UIView {
public func awakeAfter(using aDecoder: NSCoder, _ superMethod: @autoclosure () -> Any?) -> Any? {
guard nonPrivateSubviews.isEmpty else { return superMethod() }
let nibView = type(of: view).fromNib()
copyProperties(to: nibView)
copyConstraints(to: nibView)
return nibView
}
public func initWithFrame() {
let nibView = type(of: view).fromNib()
copyProperties(to: nibView)
SubviewsCopier.copySubviewReferences(from: nibView, to: view)
nibView.frame = view.bounds
nibView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
view.addSubview(nibView)
}
public func prepareForInterfaceBuilder() {
if nonPrivateSubviews.count == 1 {
// Used as a reference container
view.backgroundColor = .clear
} else {
// Is original .xib file
nonPrivateSubviews.first?.removeFromSuperview()
}
}
public func setValue(_ value: Any?, forKeyPath keyPath: String) {
guard let subview = value as? UIView else { return }
SubviewsCopier.store(subview: subview, forKeyPath: keyPath, of: view)
}
// MARK: - Private
private let view: NibLoadableView
fileprivate init(_ view: NibLoadableView) {
self.view = view
}
private var nonPrivateSubviews: [UIView] {
return view.subviews.filter { !String(describing: type(of: $0)).hasPrefix("_") }
}
private func copyProperties(to nibView: UIView) {
nibView.frame = view.frame
nibView.autoresizingMask = view.autoresizingMask
nibView.translatesAutoresizingMaskIntoConstraints = view.translatesAutoresizingMaskIntoConstraints
nibView.clipsToBounds = view.clipsToBounds
nibView.alpha = view.alpha
nibView.isHidden = view.isHidden
}
private func copyConstraints(to nibView: UIView) {
nibView.addConstraints(
view.constraints.map {
NSLayoutConstraint(
item: $0.firstItem === view ? nibView : $0.firstItem as Any,
attribute: $0.firstAttribute,
relatedBy: $0.relation,
toItem: $0.secondItem === view ? nibView : $0.secondItem,
attribute: $0.secondAttribute,
multiplier: $0.multiplier,
constant: $0.constant)
}
)
}
}
fileprivate struct SubviewsCopier {
static var viewKeyPathsForSubviews = [UIView: [String: UIView]]()
static func store(subview: UIView, forKeyPath keyPath: String, of view: UIView) {
if viewKeyPathsForSubviews[view] == nil {
viewKeyPathsForSubviews[view] = [keyPath: subview]
} else {
viewKeyPathsForSubviews[view]?[keyPath] = subview
}
}
static func copySubviewReferences(from view: UIView, to otherView: UIView) {
viewKeyPathsForSubviews[view]?.forEach { otherView.setValue($0.value, forKeyPath: $0.key) }
viewKeyPathsForSubviews[view] = nil
}
}