config iOS module

This commit is contained in:
pengfei.zhou
2019-07-25 20:11:12 +08:00
parent ff920621b0
commit f912c49eed
238 changed files with 1946 additions and 19007 deletions

0
iOS/Pod/Assets/.gitkeep Normal file
View File

0
iOS/Pod/Classes/.gitkeep Normal file
View File

View File

@@ -0,0 +1,26 @@
//
// UIView+Doric.h
// Doric_Example
//
// Created by pengfei.zhou on 2019/7/25.
// Copyright © 2019 CocoaPods. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIView.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIView (Doric)
@property (nonatomic) CGFloat x;
@property (nonatomic) CGFloat y;
@property (nonatomic) CGFloat width;
@property (nonatomic) CGFloat height;
@property (nonatomic) CGFloat centerX;
@property (nonatomic) CGFloat centerY;
@property (nonatomic) CGFloat top;
@property (nonatomic) CGFloat left;
@property (nonatomic) CGFloat right;
@property (nonatomic) CGFloat bottom;
@end
NS_ASSUME_NONNULL_END

View File

@@ -0,0 +1,113 @@
//
// UIView+Doric.m
// Doric_Example
//
// Created by pengfei.zhou on 2019/7/25.
// Copyright © 2019 CocoaPods. All rights reserved.
//
#import "UIView+Doric.h"
@implementation UIView(Doric)
-(CGFloat)x {
return self.frame.origin.x;
}
-(void)setX:(CGFloat)x {
CGRect frame = self.frame;
frame.origin.x = x;
[self setFrame:frame];
}
-(CGFloat)y {
return self.frame.origin.y;
}
-(void)setY:(CGFloat)y {
CGRect frame = self.frame;
frame.origin.y = y;
[self setFrame:frame];
}
-(CGFloat)left {
return self.frame.origin.x;
}
-(void)setLeft:(CGFloat)left {
CGRect frame = self.frame;
frame.origin.x = left;
[self setFrame:frame];
}
-(CGFloat)right {
return self.frame.origin.x + self.frame.size.width;
}
-(void)setRight:(CGFloat)right {
CGRect frame = self.frame;
frame.origin.x = right - self.frame.size.width;
[self setFrame:frame];
}
-(CGFloat)top {
return self.frame.origin.y;
}
- (void)setTop:(CGFloat)top {
CGRect frame = self.frame;
frame.origin.y = top;
[self setFrame:frame];
}
-(CGFloat)bottom {
return self.frame.origin.y + self.frame.size.height;
}
-(void)setBottom:(CGFloat)bottom {
CGRect frame = self.frame;
frame.origin.y = bottom - self.frame.size.height;
[self setFrame:frame];
}
- (CGFloat)width {
return self.frame.size.width;
}
-(void)setWidth:(CGFloat)width {
CGRect frame = self.frame;
frame.size.width = width;
self.frame = frame;
}
-(CGFloat)height {
return self.frame.size.height;
}
-(void)setHeight:(CGFloat)height {
CGRect frame = self.frame;
frame.size.height = height;
self.frame = frame;
}
- (CGFloat)centerX {
return self.frame.origin.x + self.frame.size.width/2;
}
- (void)setCenterX:(CGFloat)centerX {
CGRect frame = self.frame;
frame.origin.x = centerX - self.frame.size.width/2;
[self setFrame:frame];
}
- (CGFloat)centerY {
return self.frame.origin.y + self.frame.size.height/2;
}
- (void)setCenterY:(CGFloat)centerY {
CGRect frame = self.frame;
frame.origin.y = centerY - self.frame.size.height/2;
[self setFrame:frame];
}
@end