摘要: 当 UIscrollView 下拉到一定高度就让导航栏完全显示出来,中间过程则是导航栏背景由浅变深,也就是渐变效果 阅读全文
posted @ 2018-11-12 17:05 新年新气象 阅读(139) 评论(0) 推荐(0)
摘要: //贝塞尔曲线路径 UIBezierPath *movePath = [UIBezierPath bezierPath]; [movePath moveToPoint:CGPointMake(10.0, 10.0)]; [movePath addQuadCurveToPoint:CGPointMake(100, 300... 阅读全文
posted @ 2018-11-12 16:43 新年新气象 阅读(233) 评论(0) 推荐(0)
摘要: // 方法一 用法1​ Value方式 //创建动画对象 CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"position"]; //设置value NSValue *value1=[NSValue valueWithC... 阅读全文
posted @ 2018-11-12 15:46 新年新气象 阅读(401) 评论(0) 推荐(0)
摘要: //1.创建动画 CABasicAnimation *anima=[CABasicAnimation animationWithKeyPath:@"bounds"]; //1.1设置动画执行时间 anima.duration=2.0; //1.2设置动画执行完毕后不删除动画 anima.removedOnCompletion=YES; //1.3... 阅读全文
posted @ 2018-11-12 15:33 新年新气象 阅读(408) 评论(0) 推荐(0)
摘要: 该项目一共两个界面,第一个的只有一个SystemAnimationViewController只有UICollecitonView,第二个界面ImgDetailViewController只有一个UIImageView,代码简单,这里不做陈述 下面是转场动画的所有代码: 阅读全文
posted @ 2018-11-12 11:43 新年新气象 阅读(1861) 评论(0) 推荐(0)