本文主要是介绍告别恶心的CGRect设置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
FrameAccessor
https://github.com/AlexDenisov/FrameAccessor
Manual Install(手动安装)
All you need to do is drop FrameAccessor
files into your project, and add #include "FrameAccessor.h"
to the top of files that will use it.
你需要做的就是把文件夹FrameAccessor
拖到你的工程当中,然后引入头文件FrameAccessor.h
即可.
Example Usage
以前你要这么做才能设置frame值,看起来真傻缺!!
CGRect newFrame = view.frame; newFrame.origin.x = 15.; newFrame.size.width = 167.; view.frame = newFrame;
现在你只需要这样子做就行了.
view.x = 15.; view.width = 167.;
一切尽在不言中......
这篇关于告别恶心的CGRect设置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!