-
Notifications
You must be signed in to change notification settings - Fork 198
Feature Requests
Think7 edited this page Feb 11, 2014
·
23 revisions
- Unit tests (validate the view frames are set correctly)
- Would love help writing tests! Feel free to let me know if you're interested, or just send a pull request. --smileyborg
It's helpful if you sign your request with your GitHub username, e.g. --username
- Consider additions to the NSLayoutConstraint category, such as adding some sort of tag or identifier property to find a constraint at runtime without having to keep a reference to it --smileyborg
- Print the added constraint in a human readable mode or in visual format language (documentation here). Guy you rock, you saved my life --gali8
- I would definitely like this too. Unfortunately I don't have any good ideas on how to do this easily - would love suggestions. I don't want to do any method swizzling (to change the NSLayoutConstraint description method), and I don't want to create a subclass of NSLayoutConstraint. --smileyborg
- Allow pinning of views to verticalCenter/horizontalCenter of other views. Example: [myView autoPinEdge:ALEdgeRight toCenterType:ALHorizintalCenter ofView:someOtherView withOffset: 20.0f]; -Think7