File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -389,11 +389,17 @@ Get busy Masoning
389
389
390
390
Copy the included code snippets to ``~/Library/Developer/Xcode/UserData/CodeSnippets`` to write your masonry blocks at lightning speed!
391
391
392
- `mas_make` -> `[<view> mas_makeConstraints:^(MASConstraintMaker *make){<code>}];`
392
+ `mas_make` -> ` [<#view#> mas_makeConstraints:^(MASConstraintMaker *make) {
393
+ <#code#>
394
+ }];`
393
395
394
- `mas_update` -> `[<view> mas_updateConstraints:^(MASConstraintMaker *make){<code>}];`
396
+ `mas_update` -> ` [<#view#> mas_updateConstraints:^(MASConstraintMaker *make) {
397
+ <#code#>
398
+ }];`
395
399
396
- `mas_remake` -> `[<view> mas_remakeConstraints:^(MASConstraintMaker *make){<code>}];`
400
+ `mas_remake` -> ` [<#view#> mas_remakeConstraints:^(MASConstraintMaker *make) {
401
+ <#code#>
402
+ }];`
397
403
398
404
## Features
399
405
* Not limited to subset of Auto Layout. Anything NSLayoutConstraint can do, Masonry can do too!
You can’t perform that action at this time.
0 commit comments