HBHttpRequest.h 323 B

123456789101112131415161718
  1. //
  2. // HBHttpRequest.h
  3. // MyTest
  4. //
  5. // Created by weqia on 13-8-15.
  6. // Copyright (c) 2013年 weqia. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface HBHttpRequest : NSObject
  10. +(HBHttpRequest*)shareIntance;
  11. - (void)getBitmapURL:(NSString*)indirectUrl complete:(void(^)(NSString*))complete;
  12. @end