// // HomeWeatherBoard.h // HDMall // // Created by Javen on 2017/7/28. // Copyright © 2017年 上海勾芒信息科技. All rights reserved. // #import <UIKit/UIKit.h> #import "WeatherModel.h" #import "LocationHelper.h" @interface HomeWeatherBoard : UIView @property (weak, nonatomic) IBOutlet UIImageView *img; @property (weak, nonatomic) IBOutlet UILabel *city; @property (weak, nonatomic) IBOutlet UILabel *detail; @property (strong, nonatomic) WeatherModel *weatherModel; /** 顶部天气的背景 */ @property (weak, nonatomic) IBOutlet UIImageView *imgHomeTopBg; - (void)configWithModel:(WeatherModel *)model; @end