ColorFromAddress 1.0.1× 测试已测试✗ 语言语言 Obj-CObjective C许可证 MIT 发布上次发布2014年12月由Esteban Torres维护。安装指南×ColorFromAddress 的安装指南您想要将类似的代码 pod 'ColorFromAddress', '~> 1.0' 添加到您的 Podfile 中target 'MyApp' do pod 'ColorFromAddress', '~> 1.0' end然后在终端中运行 pod install,或从 CocoaPods.app 中运行。或者为了测试运行,可以运行以下命令pod try ColorFromAddress查看 PodspecGitHub 代码库CocoaPods.org 上的页面ColorFromAddress 1.0.1作者:Esteban Torresesttorhe/ColorFromAddressGitHub 代码库 UIView 分类,可根据视图的内存地址生成 UIColor。 帮助确定视图何时被重新使用,同时也是一个简单快捷的了解如何进行 UI 编码视图布局的方法。下面是代码示例 UIView *tmpVw = [[UIView alloc] initWithFrame:CGRectZero]; tmpVw.backgroundColor = [tmpVw colorFromMemory]; 这个项目受到了这篇博客文章的启发,作者是Mark Dalrymple。