Created
July 17, 2012 13:45
-
-
Save harichinthalapale/3129471 to your computer and use it in GitHub Desktop.
Right align view
This file contains hidden or 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
CGRect _f = CGRectMake(0, 0, 200, 200); | |
CGFloat xPosition = CGRectGetWidth(self.view.frame) - CGRectGetWidth(_f); | |
_f.origin = CGPointMake(ceil(xPosition), 0.0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment