GlobalData.m 337 B

12345678910111213141516171819
  1. //
  2. // GlobalData.m
  3. // zhuxun
  4. //
  5. // Created by 张建伟 on 15/1/14.
  6. // Copyright (c) 2015年 张建伟. All rights reserved.
  7. //
  8. #import "GlobalData.h"
  9. @implementation GlobalData
  10. +(NSString*)fullURL:(NSString*)path{
  11. NSString *host = APP_HOST;
  12. return [NSString stringWithFormat:@"%@/zhuxunserver/%@",host,path];
  13. }
  14. @end