Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #41

Open
wants to merge 32 commits into
base: objective-c
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9626ad9
Convert sample project to Swift
smileyborg Jun 8, 2014
cb8913c
Update README
smileyborg Jun 8, 2014
47c184e
Update README
smileyborg Jun 8, 2014
cd03ca7
Change constraint to be inequality
smileyborg Jun 8, 2014
0aedb27
Apply workarounds for two Apple bugs
smileyborg Jun 8, 2014
7bbdfd6
Rewrite some code to use more pure Swift
smileyborg Jun 8, 2014
9a70468
Resolve issue with constants in Swift
Jun 10, 2014
ed1373b
Minor formatting changes
Jun 10, 2014
0d7480e
Add example of loading cell from a nib
Jun 11, 2014
653f755
Replace UIView+AutoLayout with PureLayout
Jun 24, 2014
b38f55d
Update README
Jun 24, 2014
cc07be7
Changes to fix compiler errors with beta 3 and 4
Jul 25, 2014
ab2ad1e
Merge pull request #4 from shagedorn/bugfix/swiftUpdate
smileyborg Jul 25, 2014
783718b
Fix Xcode 6b5 Swift compiler errors
Aug 8, 2014
153897f
Updated code for optional conformance due to Apple's API changes, add…
zgavin Sep 10, 2014
1b19bcc
Minor logic flow cleanup
Sep 12, 2014
0fa8609
Update PureLayout to v1.1.0
Sep 12, 2014
19a58be
Call [super updateConstraints] as the final step in updateConstraints
Sep 22, 2014
f3251dd
Fix Xcode 6.1 GM compile issues
Oct 7, 2014
0897fe7
Update PureLayout to latest version (v2.0.1)
Oct 19, 2014
dcae588
Fix Xcode 6.1 compile issues
Nov 13, 2014
945a281
Make project compatible with Swift 1.2
dautermann Mar 6, 2015
e9cb815
Update PureLayout to v2.0.5
Mar 10, 2015
abe00ef
Minor refactoring for compatibility with Swift 1.1 and 1.2
Mar 28, 2015
54b22c7
Update with Xcode 7
Jun 18, 2015
c1694c6
Remove semicolons
Jun 18, 2015
daaef5e
Updates for Swift 2.0 in Xcode 7.0 beta 4
smileyborg Aug 2, 2015
4112e64
Update PureLayout to v3.0.0
smileyborg Aug 17, 2015
1988946
Add note about Swift 2.0
smileyborg Aug 17, 2015
448a38a
Update .gitignore, check in .xcworkspace
smileyborg Oct 4, 2015
061afd6
Fix Xcode 7.3 selector error and swift warnings
cl7 May 15, 2016
f9438f8
Merge pull request #40 from l800891/master
smileyborg May 15, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 31 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Xcode
.DS_Store
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
Expand All @@ -9,10 +15,29 @@ build/
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile

## Other
*.xccheckout
*.moved-aside
DerivedData
.idea/
*.xcuserstate
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
#Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build
3 changes: 3 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
use_frameworks!

pod 'PureLayout'
10 changes: 10 additions & 0 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
PODS:
- PureLayout (3.0.0)

DEPENDENCIES:
- PureLayout

SPEC CHECKSUMS:
PureLayout: 270dfee2236f697ab1d5e2771c2e5c248495fa0d

COCOAPODS: 0.38.2
1 change: 1 addition & 0 deletions Pods/Headers/Private/PureLayout/ALView+PureLayout.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Private/PureLayout/NSArray+PureLayout.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Private/PureLayout/PureLayout+Internal.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Private/PureLayout/PureLayout.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Private/PureLayout/PureLayoutDefines.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

532 changes: 532 additions & 0 deletions Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions Pods/PureLayout/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

213 changes: 213 additions & 0 deletions Pods/PureLayout/PureLayout/PureLayout/ALView+PureLayout.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading