blob: 93b9c0fd4fc7be010e69b5f56ee9cbf8af4f8071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// UIView+Additions.h
// FlushD
//
// Created by Ronny Fenrich on 2012-08-30.
//
//
#import <UIKit/UIKit.h>
@interface UIView (Additions)
@property (nonatomic, assign) CGPoint $origin;
@property (nonatomic, assign) CGSize $size;
@property (nonatomic, assign) CGFloat $x, $y, $width, $height; // normal rect properties
@property (nonatomic, assign) CGFloat $left, $top, $right, $bottom; // these will stretch/shrink the rect
@end
|