详解 CALayer 和 UIView 的区别和联系
- UIView 可以接受 touch事件,CALayer不可以
- UIView 主要工作是内容的组织者,CALayer主要工作是绘制和显示
- UIView 修改非CALayer属性时,会触发隐式动画,如果要关闭可以使用该方法:
Git配置
git config –global user.name “robbin”
git config –global user.email “fankai@gmail.com”
git config –global color.ui true
git config –global alias.co checkout
git config –global alias.ci commit
git config –global alias.st status
git config –global alias.br branch
git config –global core.editor “mate -w” # 设置Editor使用textmate
git config -l # 列举所有配置
用户的git配置文件~/.gitconfig
running pig
IOS Developer