摘要: 键值监听 [person addObserver: forKeyPath ] [person removeObserver: forKeyPath】 当监听的属性值发生改变,会调用下面方法: -observeValueForKeyPath: ofObject... 阅读全文
posted @ 2020-04-22 22:53 Emyin 阅读(93) 评论(0) 推荐(0) 编辑
摘要: [person setValue:@"xiaomi" forKeyPath:@"dog.name"]; [person valueForKey:"age"] [person dictionaryWithValuesForKeys:@[@"name",@"age"]]; //模型转字典 forKey和 阅读全文
posted @ 2020-04-22 21:07 Emyin 阅读(81) 评论(0) 推荐(0) 编辑
摘要: [image resizableImageWithCapInsets:UIEdgeInsetMake(imageHeight * 0.5, imageWidth * 0.5, imageHeight * 0.5 -1, imageWidth * 0.5 - 1) resizingMode:UIIMa 阅读全文
posted @ 2020-04-22 20:34 Emyin 阅读(457) 评论(0) 推荐(0) 编辑
摘要: 1. 渐变动画 [UIView beginAnimations:nil context:nil];[UIView setAnimationDuration:1.0]; 改变frame等 [UIView commitAnimation]; [UIView animateWithDuration: an 阅读全文
posted @ 2020-04-22 20:22 Emyin 阅读(129) 评论(0) 推荐(0) 编辑