// // AsyncImageView.h // tourpan // // Created by scar on 12-9-9. // Copyright 2012 __MyCompanyName__. All rights reserved. // #import @protocol asyncImageDelegate @optional - (void)loadImageSuccess; @end @interface AsyncImageView : UIView @property(nonatomic, strong)UIImage* defaultImage; @property(nonatomic, strong)NSString* imageId; @property(nonatomic, strong)NSDate* imageTime; @property(nonatomic, assign)UIViewContentMode contentMode; @property(nonatomic, strong)NSString *imageUrl; @property(nonatomic, strong)UIImageView *imageView; @property(nonatomic, assign)BOOL isHaveWaterPrint; @property(nonatomic, weak)ASIHTTPRequest *request; @property(nonatomic, weak)id delegate; @property(nonatomic, strong)UIColor *backColor; @end