Animation of weather written in Objective-C, including sun, cloud, rain, thunderstorm, snow animation.
- sun
- cloud
- rain
- thunderstorm
- snow
- Animation transition
#import "WHWeatherView.h"
WHWeatherView *weatherView = [[WHWeatherView alloc] init];
self.weatherView.frame = self.view.bounds;
[self.view addSubview:self.weatherView];
typedef NS_ENUM(NSInteger, WHWeatherType){
WHWeatherTypeSun = 0,
WHWeatherTypeClound = 1,
WHWeatherTypeRain = 2,
WHWeatherTypeRainLighting = 3,
WHWeatherTypeSnow = 4,
WHWeatherTypeOther = 5
};
- (void)showWeatherAnimationWithType:(WHWeatherType)weatherType;
-
WHWeatherAnimation has been used in this app SiShi(思诗 - 思念诗歌,每日一诗). You can read a beautiful chinese poetry while get the daily weather forecast. Download and enjoy it.
-
Here is a easy way to get the weather data. 心知天气 which offered free and comprehensive APIs.
WHWeatherAnimation is released under the MIT license. See LICENSE for details.