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
  • 相关阅读:
    python爬虫基础(requests、BeautifulSoup)
    python中字典按键、值进行排序
    进程和线程的区别
    MySQL中的索引
    python中浅拷贝和深拷贝的区别
    谈谈final、finally、finalize的区别
    python中布尔值是false
    生成器的阐释
    文件处理
    内置函数
  • 原文地址:https://www.cnblogs.com/yongdaimi/p/5958257.html
Copyright © 2011-2022 走看看