摘要:
UIView 主要负责视图与用户的交互,真正的内容显示是通过UIView里面的图层CALayer来完成的(没有交互能力) 1.创建CALayer CALayer *layer = [CALayer layer]; layer.backgroundColour = [UIColor redColor] 阅读全文
摘要:
1.block式动画 横向或纵向移动XY [UIView animateWithDuration:0.5 animations:^{ self.aView.frame = CGRectMake(_aView.frame.origin.x, _aView.frame.origin.y + 50, _a 阅读全文