Skip to content

Commit 88570ee

Browse files
author
Mike Amaral
committed
Cleaned up readme.
1 parent fa5fe92 commit 88570ee

10 files changed

+206
-110
lines changed

Demo/Neon/Neon/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
1515
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
1616
self.window = UIWindow.init(frame: UIScreen.mainScreen().bounds)
1717
self.window?.backgroundColor = UIColor.whiteColor()
18-
self.window?.rootViewController = TestViewController()
18+
self.window?.rootViewController = ViewController()
1919
self.window?.makeKeyAndVisible()
2020
return true
2121
}

Demo/Neon/Neon/TestViewController.swift

+45-27
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
import UIKit
1010

1111
class TestViewController: UIViewController {
12-
let anchorView : UIView = UIView()
13-
let anchorView2 : UIView = UIView()
14-
let anchorView3 : UIView = UIView()
12+
let anchorViewA : UILabel = UILabel()
13+
let anchorViewB : UILabel = UILabel()
14+
let anchorViewC : UILabel = UILabel()
15+
let anchorViewD : UILabel = UILabel()
1516
let view1 : UILabel = UILabel()
1617
let view2 : UILabel = UILabel()
1718
let view3 : UILabel = UILabel()
@@ -22,73 +23,90 @@ class TestViewController: UIViewController {
2223
override func viewDidLoad() {
2324
super.viewDidLoad()
2425

25-
anchorView.backgroundColor = UIColor(red: 229/255.0, green: 72/255.0, blue: 26/255.0, alpha: 1.0)
26-
view.addSubview(anchorView)
27-
28-
anchorView2.backgroundColor = UIColor(red: 229/255.0, green: 72/255.0, blue: 26/255.0, alpha: 1.0)
29-
view.addSubview(anchorView2)
30-
31-
anchorView3.backgroundColor = UIColor(red: 229/255.0, green: 72/255.0, blue: 26/255.0, alpha: 1.0)
32-
view.addSubview(anchorView3)
26+
anchorViewA.backgroundColor = UIColor(red: 229/255.0, green: 72/255.0, blue: 26/255.0, alpha: 1.0)
27+
anchorViewA.text = ""
28+
anchorViewA.textAlignment = .Center
29+
anchorViewA.font = UIFont.boldSystemFontOfSize(20)
30+
anchorViewA.textColor = UIColor.whiteColor()
31+
view.addSubview(anchorViewA)
32+
33+
anchorViewB.backgroundColor = UIColor(red: 229/255.0, green: 72/255.0, blue: 26/255.0, alpha: 1.0)
34+
anchorViewB.text = ""
35+
anchorViewB.textAlignment = .Center
36+
anchorViewB.font = UIFont.boldSystemFontOfSize(20)
37+
anchorViewB.textColor = UIColor.whiteColor()
38+
view.addSubview(anchorViewB)
39+
40+
anchorViewC.backgroundColor = UIColor(red: 229/255.0, green: 72/255.0, blue: 26/255.0, alpha: 1.0)
41+
anchorViewC.text = "C"
42+
anchorViewC.textAlignment = .Center
43+
anchorViewC.font = UIFont.boldSystemFontOfSize(20)
44+
anchorViewC.textColor = UIColor.whiteColor()
45+
view.addSubview(anchorViewC)
46+
47+
anchorViewD.backgroundColor = UIColor(red: 229/255.0, green: 72/255.0, blue: 26/255.0, alpha: 1.0)
48+
anchorViewD.text = "D"
49+
anchorViewD.textAlignment = .Center
50+
anchorViewD.font = UIFont.boldSystemFontOfSize(20)
51+
anchorViewD.textColor = UIColor.whiteColor()
52+
view.addSubview(anchorViewD)
3353

3454
view1.backgroundColor = UIColor(red: 78/255.0, green: 102/255.0, blue: 131/255.0, alpha: 1.0)
3555
view1.text = "1"
3656
view1.textAlignment = .Center
3757
view1.font = UIFont.boldSystemFontOfSize(20)
3858
view1.textColor = UIColor.whiteColor()
39-
anchorView.addSubview(view1)
59+
anchorViewA.addSubview(view1)
4060

4161
view2.backgroundColor = UIColor(red: 132/255.0, green: 169/255.0, blue: 57/255.0, alpha: 1.0)
4262
view2.text = "2"
4363
view2.textAlignment = .Center
4464
view2.font = UIFont.boldSystemFontOfSize(20)
4565
view2.textColor = UIColor.whiteColor()
46-
anchorView.addSubview(view2)
66+
anchorViewA.addSubview(view2)
4767

4868
view3.backgroundColor = UIColor(red: 78/255.0, green: 102/255.0, blue: 131/255.0, alpha: 1.0)
4969
view3.text = "3"
5070
view3.textAlignment = .Center
5171
view3.font = UIFont.boldSystemFontOfSize(20)
5272
view3.textColor = UIColor.whiteColor()
53-
anchorView2.addSubview(view3)
73+
anchorViewA.addSubview(view3)
5474

5575
view4.backgroundColor = UIColor(red: 132/255.0, green: 169/255.0, blue: 57/255.0, alpha: 1.0)
5676
view4.text = "4"
5777
view4.textAlignment = .Center
5878
view4.font = UIFont.boldSystemFontOfSize(20)
5979
view4.textColor = UIColor.whiteColor()
60-
anchorView2.addSubview(view4)
80+
anchorViewB.addSubview(view4)
6181

6282
view5.backgroundColor = UIColor(red: 78/255.0, green: 102/255.0, blue: 131/255.0, alpha: 1.0)
6383
view5.text = "5"
6484
view5.textAlignment = .Center
6585
view5.font = UIFont.boldSystemFontOfSize(20)
6686
view5.textColor = UIColor.whiteColor()
67-
anchorView3.addSubview(view5)
87+
anchorViewB.addSubview(view5)
6888

6989
view6.backgroundColor = UIColor(red: 132/255.0, green: 169/255.0, blue: 57/255.0, alpha: 1.0)
7090
view6.text = "6"
7191
view6.textAlignment = .Center
7292
view6.font = UIFont.boldSystemFontOfSize(20)
7393
view6.textColor = UIColor.whiteColor()
74-
anchorView3.addSubview(view6)
94+
anchorViewB.addSubview(view6)
7595
}
7696

7797
override func viewWillLayoutSubviews() {
7898
super.viewWillLayoutSubviews()
7999

80-
view.groupAgainstEdge(group: .Horizontal, views: [anchorView, anchorView2, anchorView3], againstEdge: .Top, padding: 100, width: 200, height: 200)
81-
// anchorView.anchorInCenter(width: 200, height: 200)
100+
view.groupAgainstEdge(group: .Horizontal, views: [anchorViewA, anchorViewB], againstEdge: .Top, padding: 120, width: 300, height: 300)
101+
// anchorViewA.anchorInCorner(.TopLeft, xPad: 150, yPad: 100, width: 200, height: 200)
102+
// anchorViewB.anchorInCorner(.TopRight, xPad: 150, yPad: 100, width: 200, height: 200)
103+
// anchorViewC.anchorInCorner(.BottomLeft, xPad: 150, yPad: 100, width: 200, height: 200)
104+
// anchorViewD.anchorInCorner(.BottomRight, xPad: 150, yPad: 100, width: 200, height: 200)
105+
82106
let padding : CGFloat = 10.0
83107
let size : CGFloat = 50.0
84108

85-
view1.anchorInCorner(.TopLeft, xPad: padding, yPad: padding, width: size, height: size)
86-
view2.alignAndFillWidth(align: .ToTheRightMatchingTop, relativeTo: view1, padding: padding, height: size / 2.0)
87-
88-
view3.anchorInCorner(.BottomRight, xPad: padding, yPad: padding, width: size, height: size)
89-
view4.alignAndFillHeight(align: .AboveCentered, relativeTo: view3, padding: padding, width: size / 2.0)
90-
91-
view5.anchorInCorner(.TopRight, xPad: padding, yPad: padding, width: size, height: size)
92-
view6.alignAndFill(align: .ToTheLeftMatchingTop, relativeTo: view5, padding: padding)
109+
anchorViewA.groupAgainstEdge(group: .Horizontal, views: [view1, view2, view3], againstEdge: .Left, padding: padding, width: size, height: size)
110+
anchorViewB.groupAgainstEdge(group: .Vertical, views: [view4, view5, view6], againstEdge: .Bottom, padding: padding, width: size, height: size)
93111
}
94112
}

Demo/Neon/Neon/ViewController.swift

+8-8
Original file line numberDiff line numberDiff line change
@@ -202,15 +202,15 @@ class ViewController: UIViewController {
202202
view6.alignAndFill(align: .UnderMatchingLeft, relativeTo: view2, padding: 10)
203203
view7.alignAndFillHeight(align: .AboveMatchingRight, relativeTo: view1, padding: 10, width: 60)
204204
view8.alignAndFillWidth(align: .ToTheLeftMatchingTop, relativeTo: view7, padding: 10, height: 70)
205-
view9.alignBetweenVertical(align: .UnderMatchingLeft, topView: view8, bottomView: anchorView, padding: 10, width: 100)
206-
view10.alignBetweenHorizontal(align: .ToTheRightMatchingTop, leftView: view9, rightView: view7, padding: 10, height: view9.height())
205+
view9.alignBetweenVertical(align: .UnderMatchingLeft, primaryView: view8, secondaryView: anchorView, padding: 10, width: 100)
206+
view10.alignBetweenHorizontal(align: .ToTheRightMatchingTop, primaryView: view9, secondaryView: view7, padding: 10, height: view9.height())
207207
view14.anchorInCorner(.BottomLeft, xPad: 10, yPad: 10, width: 100, height: 100)
208-
view15.alignBetweenVertical(align: .UnderMatchingLeft, topView: view9, bottomView: view14, padding: 10, width: 50)
209-
view16.alignBetweenHorizontal(align: .ToTheRightMatchingBottom, leftView: view14, rightView: view6, padding: 10, height: 40)
210-
view17.alignBetweenHorizontal(align: .ToTheRightMatchingTop, leftView: view15, rightView: anchorView, padding: 10, height: 100)
211-
view18.alignBetweenVertical(align: .UnderMatchingLeft, topView: anchorView, bottomView: view16, padding: 10, width: anchorView.width())
212-
view19.alignBetweenHorizontal(align: .ToTheRightMatchingTop, leftView: view14, rightView: view18, padding: 10, height: 50)
213-
view20.alignBetweenVertical(align: .UnderCentered, topView: view17, bottomView: view19, padding: 10, width: view17.width())
208+
view15.alignBetweenVertical(align: .UnderMatchingLeft, primaryView: view9, secondaryView: view14, padding: 10, width: 50)
209+
view16.alignBetweenHorizontal(align: .ToTheRightMatchingBottom, primaryView: view14, secondaryView: view6, padding: 10, height: 40)
210+
view17.alignBetweenHorizontal(align: .ToTheRightMatchingTop, primaryView: view15, secondaryView: anchorView, padding: 10, height: 100)
211+
view18.alignBetweenVertical(align: .UnderMatchingLeft, primaryView: anchorView, secondaryView: view16, padding: 10, width: anchorView.width())
212+
view19.alignBetweenHorizontal(align: .ToTheRightMatchingTop, primaryView: view14, secondaryView: view18, padding: 10, height: 50)
213+
view20.alignBetweenVertical(align: .UnderCentered, primaryView: view17, secondaryView: view19, padding: 10, width: view17.width())
214214
}
215215

216216
override func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {

README.md

+47-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Neon is built around how user interfaces are naturally designed - primary views are anchored to the sides / corners of the screen, and secondary views are laid out relative to them. Views expand and shrink to fill the screen, so building dynamic layouts that look great on the smallest phones all the way up to biggest tablets is quick and easy. No more springs and struts. No more whacky visual format language. No more auto layout contraints. We're not robots, so why should we build our UIs like we are?
66

7-
#### More will be coming very soon, so stay tuned! In the meantime, here's an intentionally convoluted example to show how easy it is to build very complex and dynamic layouts with Neon. The following was created with only *20 lines of code*. That's one line of code per view!
7+
#### More will be coming very soon, so stay tuned! In the meantime, here's an intentionally convoluted example to show how easy it is to build very complex and dynamic layouts with Neon. The following layout was created with only *20 lines of code*. That's one line of code per view!
88

99
![Demo](Screenshots/demo.gif)
1010

@@ -111,7 +111,7 @@ view12.align(.ToTheLeftMatchingTop, relativeTo: anchorView, padding: padding, wi
111111

112112
## Align and fill
113113

114-
You don't always know or want to specify the size of a view that you want to place relative to another. You may want to fill the width, height, or the entire rest of the superview after aligning with the sibling. Using `alignAndFillWidth()`, `alignAndFillHeight()`, and `alignAndFill()`, you can do just that! Combined with the different alignment types discussed earlier, we're starting to see how more complex layouts can be built very easily:
114+
You don't always know or what to specify the size of a view that you want to layout relative to another, but rather you want to either fill the width, height, or the entire rest of the superview, after aligning with the sibling. Combined with all the different alignment types discussed earlier, we're starting to see how more complex layouts can be built very easily:
115115

116116
```swift
117117
view2.alignAndFillWidth(align: .ToTheRightMatchingTop, relativeTo: view1, padding: padding, height: size / 2.0)
@@ -121,14 +121,53 @@ view6.alignAndFill(align: .ToTheLeftMatchingTop, relativeTo: view5, padding: pad
121121

122122
![Align Fill](Screenshots/align_fill.png)
123123

124-
## Todo
125124

126-
- [ ] Finish initial implementation
127-
- [ ] README documentation
128-
- [ ] Code documentation
129-
- [ ] Code coverage
125+
## Align between
126+
127+
Sometimes you want a view to sit between to other views, filling the space between them. Using alignBetweenHorizontal() and alignBetweenVertical(), doing that is super easy! Choose one of your sibling views you want to align your view relative to and pass that in as your `primaryView`. We will use the specified `align` parameter to match that `primaryView` appropriately, and automatically fill either the horizontal or vertical span between the it and the `secondaryView`.
128+
129+
```swift
130+
view1.alignBetweenHorizontal(align: .ToTheRightMatchingTop, primaryView: anchorViewA, secondaryView: anchorViewB, padding: padding, height: size)
131+
view2.alignBetweenVertical(align: .UnderCentered, primaryView: anchorViewB, secondaryView: anchorViewD, padding: padding, width: size)
132+
view3.alignBetweenHorizontal(align: .ToTheLeftMatchingBottom, primaryView: anchorViewD, secondaryView: anchorViewC, padding: padding, height: size)
133+
view4.alignBetweenVertical(align: .AboveMatchingRight, primaryView: anchorViewC, secondaryView: anchorViewA, padding: padding, width: size)
134+
```
135+
136+
![Align Between Fill](Screenshots/align_between_fill.png)
137+
138+
139+
## Grouping
140+
141+
Another common use-case is the *grouping* of sibling views, aligned in a row or column. Using what we've already learned about anchoring views in the center, in a corner, or against an edge, we can also do the same with groups of views!
142+
143+
The primary difference with grouping, is that it is done by the *parent view,* or `superview` of a group of views. For example, let's let two different views center a group of their subviews in each of the two different `Group` configurations, `.Horizontal` and `.Vertical`:
144+
145+
```swift
146+
anchorViewA.groupInCenter(group: .Horizontal, views: [view1, view2, view3], padding: padding, width: size, height: size)
147+
anchorViewB.groupInCenter(group: .Vertical, views: [view4, view5, view6], padding: padding, width: size, height: size)
148+
```
149+
150+
![Group in center](Screenshots/group_in_center.png)
151+
152+
How about grouping views in the corner?
153+
154+
```swift
155+
anchorViewA.groupInCorner(group: .Horizontal, views: [view1, view2, view3], inCorner: .TopLeft, padding: padding, width: size, height: size)
156+
anchorViewB.groupInCorner(group: .Vertical, views: [view4, view5, view6], inCorner: .BottomRight, padding: padding, width: size, height: size)
157+
```
158+
159+
![Group in corner](Screenshots/group_in_corner.png)
160+
161+
As you might have expected, you can also group either horizontally and vertically against any edge as well:
162+
163+
```swift
164+
anchorViewA.groupAgainstEdge(group: .Horizontal, views: [view1, view2, view3], againstEdge: .Left, padding: padding, width: size, height: size)
165+
anchorViewB.groupAgainstEdge(group: .Vertical, views: [view4, view5, view6], againstEdge: .Bottom, padding: padding, width: size, height: size)
166+
```
167+
168+
![Group against edge](Screenshots/group_against_edge.png)
130169

131170

132171
## License
133172

134-
The source is made available under the MIT license. See LICENSE.txt for details.
173+
The source is made available under the MIT license. See LICENSE.txt for details.

Screenshots/alignToTheRight.png

-17.1 KB
Binary file not shown.

Screenshots/align_between_fill.png

36.7 KB
Loading

Screenshots/group_against_edge.png

23.6 KB
Loading

Screenshots/group_in_center.png

23.2 KB
Loading

Screenshots/group_in_corner.png

23.4 KB
Loading

0 commit comments

Comments
 (0)