Authored by Jonas Budelmann

Update README.md

@@ -2,6 +2,7 @@ Masonry @@ -2,6 +2,7 @@ Masonry
2 ======= 2 =======
3 3
4 Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Masonary has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable. 4 Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Masonary has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable.
  5 +Masonry supports iOS and Mac OSX.
5 6
6 For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace. 7 For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace.
7 8
@@ -120,7 +121,7 @@ view.mas_centerX | NSLayoutAttributeCenterX @@ -120,7 +121,7 @@ view.mas_centerX | NSLayoutAttributeCenterX
120 view.mas_centerY | NSLayoutAttributeCenterY 121 view.mas_centerY | NSLayoutAttributeCenterY
121 view.mas_baseline | NSLayoutAttributeBaseline 122 view.mas_baseline | NSLayoutAttributeBaseline
122 123
123 -#### 2. UIView 124 +#### 2. UIView/NSView
124 125
125 if you want view.left to be greater than or equal to label.left : 126 if you want view.left to be greater than or equal to label.left :
126 ```obj-c 127 ```obj-c
@@ -263,5 +264,5 @@ Get busy Masoning @@ -263,5 +264,5 @@ Get busy Masoning
263 264
264 ## TODO 265 ## TODO
265 * Eye candy 266 * Eye candy
266 -* Mac support 267 +* Mac example project
267 * More tests and examples 268 * More tests and examples