• iOS:frame访问、设置简化


    看到一些程序都有这种写法,也不知道原创者是谁了。先在博客保存下。

    在.m文件

    #import "UIView+MyFrameCategory.h"
    
    @implementation UIView (MyFrameCategory)
    
    //=================================
    - (void)setX:(CGFloat)x;
    {
        CGRect  tempFrame = self.frame;
        tempFrame.origin.x = x;
        self.frame = tempFrame;
    }
    
    - (CGFloat)x;
    {
        return self.frame.origin.x;
    }
    //=================================
    - (void)setY:(CGFloat)y;
    {
        CGRect  tempFrame = self.frame;
        tempFrame.origin.y = y;
        self.frame = tempFrame;
    }
    
    - (CGFloat)y;
    {
        return self.frame.origin.y;
    }
    //=================================
    - (void)setWidth:(CGFloat)width;
    {
        CGRect  tempFrame = self.frame;
        tempFrame.size.width = width;
        self.frame = tempFrame;
    }
    
    - (CGFloat)width;
    {
        return self.frame.size.width;
    }
    //=================================
    - (void)setHeight:(CGFloat)height;
    {
        CGRect  tempFrame = self.frame;
        tempFrame.size.height = height;
        self.frame = tempFrame;
    }
    
    - (CGFloat)height;
    {
        return self.frame.size.height;
    }
    //=================================
    - (void)setSize:(CGSize)size;
    {
        CGRect  tempFrame = self.frame;
        tempFrame.size = size;
        self.frame = tempFrame;
    }
    
    - (CGSize)size;
    {
        return self.frame.size;
    }
    //=================================
    - (void)setCenterX:(CGFloat)x;
    {
        CGPoint tempPoint = self.center;
        tempPoint.x = x;
        self.center = tempPoint;
    }
    
    - (CGFloat)centerX;
    {
        return self.center.x;
    }
    //=================================
    - (void)setCenterY:(CGFloat)y;
    {
        CGPoint tempPoint = self.center;
        tempPoint.y = y;
        self.center = tempPoint;
    }
    
    - (CGFloat)centerY;
    {
        return self.center.y;
    }
    //=================================
    
    @end
    

    在.h文件

    #import <UIKit/UIKit.h>
    
    @interface UIView (MyFrameCategory)
    
    @property(nonatomic,assign) CGFloat x;
    @property(nonatomic,assign) CGFloat y;
    @property(nonatomic,assign) CGFloat width;
    @property(nonatomic,assign) CGFloat height;
    @property(nonatomic,assign) CGFloat centerX;
    @property(nonatomic,assign) CGFloat centerY;
    @property(nonatomic,assign) CGSize size;
    
    @end
    
  • 相关阅读:
    超市名词解释
    卖功能?买利益?还是买价值?
    店长如何防止顾客外流
    生鲜在卖场中的六大类别
    卖场商品ABCD分类原则
    零售业常用的数字管理公式及其意义
    零售店的利润类型分析
    把握好生鲜经营的关键因素
    常见的心理定位套路
    [转]New .Net三层架构
  • 原文地址:https://www.cnblogs.com/leonlincq/p/6122070.html
Copyright © 2020-2023  润新知