摘要: Animation--1 1.头尾式动画 开启动画 [UIView beginAnimations:nil context:nil]; 设置动画执行时间 [UIView setAnimationDuration:0.5]; 动画的内容 提交动画 [UIView commitAnimations]; 阅读全文
posted @ 2016-01-24 22:43 南城半夏北风过丶 阅读(89) 评论(0) 推荐(0) 编辑
摘要: KVC KVO 1.KVC KVC是Key-Value-Coding的简称,它是一种可以直接通过字符串的名字(key)来访问类属性(实例变量)的机制。而不是通过调用Setter、Getter方法访问。当使用KVO、Core Data、CocoaBindings、AppleScript(Mac支持)时 阅读全文
posted @ 2016-01-24 22:42 南城半夏北风过丶 阅读(106) 评论(0) 推荐(0) 编辑