mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-07 06:14:48 +00:00
19 lines
465 B
Objective-C
Executable File
19 lines
465 B
Objective-C
Executable File
//
|
|
// UIView+Extension.h
|
|
// MJRefreshExample
|
|
//
|
|
// Created by MJ Lee on 14-5-28.
|
|
// Copyright (c) 2014年 itcast. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIView (Extension)
|
|
@property (assign, nonatomic) CGFloat x;
|
|
@property (assign, nonatomic) CGFloat y;
|
|
@property (assign, nonatomic) CGFloat width;
|
|
@property (assign, nonatomic) CGFloat height;
|
|
@property (assign, nonatomic) CGSize size;
|
|
@property (assign, nonatomic) CGPoint origin;
|
|
@end
|