-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arclin
committed
Mar 28, 2018
1 parent
0c620e0
commit fb883d8
Showing
15 changed files
with
220 additions
and
93 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// UIView+Frame.h | ||
// ArcBlog | ||
// | ||
// Created by Arclin on 15/11/18. | ||
// Copyright © 2015年 sziit. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface UIView (ALFrame) | ||
|
||
// 分类不能添加成员属性 | ||
// @property如果在分类里面,只会自动生成get,set方法的声明,不会生成带有下划线的成员属性,和方法的实现 | ||
|
||
@property (nonatomic,assign) CGFloat al_centerX; | ||
@property (nonatomic,assign) CGFloat al_centerY; | ||
@property (nonatomic,assign) CGSize al_size; | ||
@property (nonatomic,assign) CGFloat al_x; | ||
@property (nonatomic,assign) CGFloat al_y; | ||
@property (nonatomic,assign) CGFloat al_width; | ||
@property (nonatomic,assign) CGFloat al_height; | ||
|
||
@end |
Oops, something went wrong.