摘要:
Animation--1 1.头尾式动画 开启动画 [UIView beginAnimations:nil context:nil]; 设置动画执行时间 [UIView setAnimationDuration:0.5]; 动画的内容 提交动画 [UIView commitAnimations]; 阅读全文
摘要:
KVC KVO 1.KVC KVC是Key-Value-Coding的简称,它是一种可以直接通过字符串的名字(key)来访问类属性(实例变量)的机制。而不是通过调用Setter、Getter方法访问。当使用KVO、Core Data、CocoaBindings、AppleScript(Mac支持)时 阅读全文