zoukankan      html  css  js  c++  java
  • iOS-UIView category

    UIView+Extension.h

    #import <UIKit/UIKit.h>
    
    @interface UIView (Extension)
    
    @property (nonatomic,assign) CGFloat x;
    @property (nonatomic,assign) CGFloat y;
    @property (nonatomic,assign) CGFloat width;
    @property (nonatomic,assign) CGFloat height;
    @property (nonatomic,assign) CGPoint origin;
    @property (nonatomic,assign) CGSize size;
    
    @end

    UIView+Extension.m

    #import "UIView+Extension.h"
    
    @implementation UIView (Extension)
    
    
    
    - (CGFloat)x {
        return self.frame.origin.x;
    }
    
    - (void)setX:(CGFloat)x {
    
        CGRect frame = self.frame;
        frame.origin.x = x;
        self.frame = frame;
        
    }
    
    
    - (CGFloat)y {
    
        return self.frame.origin.y;
    }
    
    
    - (void)setY:(CGFloat)y {
    
        CGRect frame = self.frame;
        frame.origin.y = y;
        self.frame = 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;
        
    }
    
    
    - (CGPoint)origin {
    
        return self.frame.origin;
    
    }
    
    
    - (void)setOrigin:(CGPoint)origin {
    
        CGRect frame =  self.frame;
        frame.origin = origin;
        self.frame = frame;
        
    }
    
    
    - (CGSize)size {
    
        return self.frame.size;
    }
    
    
    - (void)setSize:(CGSize)size {
    
        CGRect frame = self.frame;
        frame.size = size;
        self.frame = frame;
        
    }
    
    
    @end
  • 相关阅读:
    MySQl的绑定变量特性
    数数 / DP
    MODE
    题单
    对拍
    二、图论
    sync_with_stdio(false)的副作用
    九大编程语言
    Codeforces Round #575 (Div. 3) A B C
    Educational Codeforces Round 69 (Rated for Div. 2) A B C D
  • 原文地址:https://www.cnblogs.com/yongdaimi/p/5958257.html
Copyright © 2011-2022 走看看