We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0385c5 + b4a6bda commit 8cc302fCopy full SHA for 8cc302f
README.md
@@ -39,6 +39,8 @@ How to define layout in JSON:
39
```
40
How to use it in code:
41
```swift
42
+import JSONLayout
43
+
44
class ViewController: UIViewController {
45
46
override func viewDidLoad() {
@@ -54,8 +56,9 @@ class ViewController: UIViewController {
54
56
55
57
}
58
59
+
60
61
Carthage setup:
62
-github "maxvol/JSONLayout" ~> 0.0.1
63
+github "maxvol/JSONLayout" ~> 0.0.2
64
UIView+findViewByID.swift
@@ -9,7 +9,7 @@
9
import UIKit
10
11
extension UIView {
12
- func findViewByID(_ id: String) -> UIView? {
+ public func findViewByID(_ id: String) -> UIView? {
13
return self.viewWithTag(id.hash)
14
15
0 commit comments