Cartography icon indicating copy to clipboard operation
Cartography copied to clipboard

A declarative Auto Layout DSL for Swift :iphone::triangular_ruler:

Results 68 Cartography issues
Sort by recently updated
recently updated
newest added

Not sure if it's an error for me, but Carthage skips it due to `Dependency "Cartography" has no shared framework schemes for any of the platforms: iOS` My Cartfile contains...

I use Cartography to layout my cell, But how can I get change the view of height with contrain ``` constrain(self.bgView!, self.introduce!) { (view1, view2) in view1.height == 20 view1.left...

I cannot use Cartography and [SQLite.swift](https://github.com/stephencelis/SQLite.swift) within the same project. Is there a way to fix this conflict? The error is with the line `Expression` giving error `missing argument in...

Is there any way to create an animation along a bezier path while using Cartography to position an object. I want to move an object from the center of one...

Please see my question and answer here: https://stackoverflow.com/questions/39496546/cartography-on-ios-centerx-constraint-is-being-reset-when-animating

Hi Guys, I'm was just testing some code and i got the error in the description. Is er anyone that could help me with this?? ``` var primeNumbers = [Int]()...

You can't splat an array into var-args in Swift, which harms the utility of methods like `constraint(views: [UIView], block: [Proxy] -> ()` There should be support for an array of...

Hello. I've really enjoyed using Cartography, so thank you! I'm seeing an issue for the first time where auto layout is complaining and breaking constraints, but when I manually set...

``` #if os(iOS) /// The first baseline of the view. iOS exclusive. @available(iOS, introduced=8.0) public var firstBaseline: Edge { return Edge(context, view, .FirstBaseline) } ``` how fix it

It would be very convenient to be able to layout UILabels and such using the capheight and baseline rather than manually adding them to the constraint's constant. Alternatively, how can...