- (id)initDownloadImageWith:(NSString*)url completeBlock:(BlockType)block{
if (self = [super init]) {//init的含义是什么?
self.imageUrl = url;
self.completeBlock = block;
NSLog(@"%@",[self class]);
NSLog(@"%@",[super class]);//为什么打印出来会是相同的一个类?
}
return self;
}