多彩每一天-天气预报预测软件

多彩每一天-天气预报预测软件

多彩每一天-天气软件,让您出行更安全,更放心!包含国内外3000多个城市天气信息,采用国内外多家气象机构数据,天气预报信息准确全面。

【24小时预报】:精准预测当日24小时实时天气变化,天气变化随手看。

【未来7日天气预报】:实时预报未来7天内天气变化,让你的出行、旅游变的更加放心安全。

空气质量、污染指数、温度趋势、pm2.5,空气质量指数等更加丰富、精准天气信息!提供穿衣、洗车、紫外线、感冒、运动、旅游等生活指数,是您日常生活、出行旅游的必备天气预报APP!多彩每一天真诚为您提供最实用的天气和空气信息,一路相伴,一心为你!

让你的生活、出行更加安全、多彩。

联系电话:+86 13478598233

技术支持网站:https://github.com/shuncaigao/Weather

部分技术支持代码展示:

/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. *//* NOTE: plugman/cordova cli should have already installed this, but you need the value UIViewControllerBasedStatusBarAppearance in your Info.plist as well to set the styles in iOS 7 */#import "CDVStatusBar.h"#import#importstatic const void *kHideStatusBar = &kHideStatusBar;

static const void *kStatusBarStyle = &kStatusBarStyle;

@interface CDVViewController (StatusBar)

@property (nonatomic, retain) id sb_hideStatusBar;

@property (nonatomic, retain) id sb_statusBarStyle;

@end

@implementation CDVViewController (StatusBar)

@dynamic sb_hideStatusBar;

@dynamic sb_statusBarStyle;

- (id)sb_hideStatusBar {

    return objc_getAssociatedObject(self, kHideStatusBar);

}

- (void)setSb_hideStatusBar:(id)newHideStatusBar {

    objc_setAssociatedObject(self, kHideStatusBar, newHideStatusBar, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

}

- (id)sb_statusBarStyle {

    return objc_getAssociatedObject(self, kStatusBarStyle);

}

- (void)setSb_statusBarStyle:(id)newStatusBarStyle {

    objc_setAssociatedObject(self, kStatusBarStyle, newStatusBarStyle, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

}

你可能感兴趣的:(多彩每一天-天气预报预测软件)