//
|
// Global.h
|
// airtree
|
//
|
// Created by WindShan on 2016/11/14.
|
// Copyright © 2016年 Gloria. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
#import "BaseResModel.h"
|
|
@interface Global : NSObject
|
|
+ (Global *)global;
|
|
// 系统提示
|
+ (void)alertMessage:(NSString *)message;
|
+ (void)alertMessageEx:(NSString *)message
|
title:(NSString *)title
|
okTtitle:(NSString *)okTitle
|
cancelTitle:(NSString *)cancelTitle
|
delegate:(id)delegate;
|
|
|
+(BaseResModel *)toBaseModel:(id) responseBody;
|
|
@end
|