CocoaPods trunk is moving to be read-only. Read more on the blog, there are 11 months to go.

QXRect 0.0.5

QXRect 0.0.5

Maintained by labi3285.



QXRect 0.0.5

  • By
  • labi3285

QXRect

A super easy use frame tool for iOS views.

Basic Rect

var rect = QXRect()
rect.top = view.qxRect.top
rect.centerX = view.qxRect.centerX
rect.size = .init(20, 20)
myView.qxRect = rect

Relation Rect

myView1.qxRect = view.qxRect.insideRect(.left(10), .center, .size(50, 50))
myView2.qxRect = myView1.qxRect.rightRect(.offset(10))
myView3.qxRect = myView2.qxRect.bottomRect(.offset(10), .left(5), .right(5))

Enjoy!