| 12345678910111213141516171819 |
- //
- // GlobalData.m
- // zhuxun
- //
- // Created by 张建伟 on 15/1/14.
- // Copyright (c) 2015年 张建伟. All rights reserved.
- //
- #import "GlobalData.h"
- @implementation GlobalData
- +(NSString*)fullURL:(NSString*)path{
-
- NSString *host = APP_HOST;
- return [NSString stringWithFormat:@"%@/zhuxunserver/%@",host,path];
- }
- @end
|