Skip to content

Instantly share code, notes, and snippets.

@nightfall708
Created June 24, 2013 08:17
Show Gist options
  • Save nightfall708/5848517 to your computer and use it in GitHub Desktop.
Save nightfall708/5848517 to your computer and use it in GitHub Desktop.
Maybe the most useful Obj-c category I ever made...
@interface UIView (QuickSize)
- (CGFloat)width;
- (CGFloat)height;
- (CGFloat)x;
- (CGFloat)y;
@end
@implementation UIView (QuickSize)
- (CGFloat)width
{
return self.frame.size.width;
}
- (CGFloat)height
{
return self.frame.size.height;
}
- (CGFloat)x
{
return self.frame.origin.x;
}
- (CGFloat)y
{
return self.frame.origin.y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment