-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from corujautx/master
Adding support to UILayoutGuide
- Loading branch information
Showing
33 changed files
with
1,380 additions
and
1,479 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// AutoresizingMaskLayoutProxy.swift | ||
// Cartography-iOS | ||
// | ||
// Created by Vitor Travain on 24/10/17. | ||
// Copyright © 2017 Robert Böhnke. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
public protocol AutoresizingMaskLayoutProxy: LayoutProxy { | ||
var translatesAutoresizingMaskIntoConstraints: Bool { get set } | ||
} |
Oops, something went wrong.