• 关于 Expression is not assignable 错误


    1.在 Build Phases中导入  UIKit.framework 

    2.在pch中导入头文件

    #import <UIKit/UIKit.h>

    3.写一个分类

    即可解决

    贴出分类代码

     ......h文件

    #import <UIKit/UIKit.h>

    @interface UIView (Extension)

    @property (nonatomic, assign) CGFloat x;

    @property (nonatomic, assign) CGFloat y;

    @property (nonatomic, assign) CGFloat centerX;

    @property (nonatomic, assign) CGFloat centerY;

    @property (nonatomic, assign) CGFloat width;

    @property (nonatomic, assign) CGFloat height;

    @property (nonatomic, assign) CGSize size;

    @property (nonatomic, assign) CGPoint origin;

    @end

    .....m文件

    #import "UIView+Extension.h"

    @implementation UIView (Extension)

    - (void)setX:(CGFloat)x

    {

        CGRect frame = self.frame;

        frame.origin.x = x;

        self.frame = frame;

    }

    - (void)setY:(CGFloat)y

    {

        CGRect frame = self.frame;

        frame.origin.y = y;

        self.frame = frame;

    }

    - (CGFloat)x

    {

        return self.frame.origin.x;

    }

    - (CGFloat)y

    {

        return self.frame.origin.y;

    }

    - (void)setCenterX:(CGFloat)centerX

    {

        CGPoint center = self.center;

        center.x = centerX;

        self.center = center;

    }

    - (CGFloat)centerX

    {

        return self.center.x;

    }

    - (void)setCenterY:(CGFloat)centerY

    {

        CGPoint center = self.center;

        center.y = centerY;

        self.center = center;

    }

    - (CGFloat)centerY

    {

        return self.center.y;

    }

    - (void)setWidth:(CGFloat)width

    {

        CGRect frame = self.frame;

        frame.size.width = width;

        self.frame = frame;

    }

    - (void)setHeight:(CGFloat)height

    {

        CGRect frame = self.frame;

        frame.size.height = height;

        self.frame = frame;

    }

    - (CGFloat)height

    {

        return self.frame.size.height;

    }

    - (CGFloat)width

    {

        return self.frame.size.width;

    }

    - (void)setSize:(CGSize)size

    {

        CGRect frame = self.frame;

        frame.size = size;

        self.frame = frame;

    }

    - (CGSize)size

    {

        return self.frame.size;

    }

    - (void)setOrigin:(CGPoint)origin

    {

        CGRect frame = self.frame;

        frame.origin = origin;

        self.frame = frame;

    }

    - (CGPoint)origin

    {

        return self.frame.origin;

    }

    @end

  • 相关阅读:
    python获取公网ip,本地ip及所在国家城市等相关信息收藏
    Tkinter的下拉列表Combobox
    pyinstaller打包pyqt文件(转)
    通过pyqt5实现俄罗斯方块游戏例子
    pygame游戏开发入门例子
    python界面Tkinter编程(tkMessageBox对话框使用)
    python tkinter-菜单栏
    python tkinter-容器、子窗体
    HUNNU--湖师大--11409--Skill
    [置顶] 博客搬迁到新地址。
  • 原文地址:https://www.cnblogs.com/ccw-congcong/p/10677546.html
Copyright © 2020-2023  润新知