2. “偷窥”第三方APP头文件
安装
实战
@protocol ViewControllerDelegate<NSObject>
- (void)didRefreshDataSuccess;
@end
@interface ViewController : UIViewController
@property (nonatomic, weak) id<ViewControllerDelegate> delegate;
@property (nonatomic, copy) NSString *pubName;
- (void)pubLoadDataWithAlbumID:(NSString *)albumID count:(NSString *)count;
@end
@interface ViewController1 (Navigation)
- (void)setRightBarItemWithTitle:(NSString *)title;
@end
总结
参考
Last updated
Was this helpful?