我在单个.h文件中有两个@interface。我想访问secondary @interface中的方法。如何在.h文件中的辅助@interface中调用方法
我的头文件的名称是MyImage.h
@interface MyImage : NSObject
- (void)addImage:(UIImage *)image forName:(NSString*)fileName;
- (void)clearImageCache;
@end
@interface UIImageView (URL_Loading)
- (void)setImageWithURL:(NSURL *)url;
- (void)setImageWithURL:(NSURL *)url
placeholderAsSpinner:(BOOL)spinnerEnabled;
@end
谁能告诉我如何调用setImageWithURL:方法
它的工作表示感谢 –