一直很喜欢Solar的颜色变化效果,看了core graphic的知识后就自己动手试了下。Solar:https://itunes.apple.com/cn/app/solar-weather/id542875991?mt=8
实现方式非常简单,使用渐变色与touchesBegan/move/end 回调。
下面是UIView的代码,直接贴到viewController上就可以了。
#import "CTTView.h"
@interfaceCTTView()
{
UIColor *upsideColor;
UIColor *downsideColor;
CGPoint startPoint;
CGPoint curPoint;
}
@end
@implementation CTTView
- (instancetype)initWithFra