123456789101112131415161718192021222324 |
- #import <Foundation/Foundation.h>
- @class UIViewController;
- extern NSString *const kKeepUploadPageKey;
- @interface APBRequest : NSObject
- @property(nonatomic, weak, readonly)UIViewController *vc;
- @property(nonatomic, copy, readonly)NSString *protocol;
- @property(nonatomic, strong, readonly)NSDictionary *extInfo;
- - (instancetype)initWithViewController:(UIViewController *)vc
- protocolInfo:(NSString *)protocol
- extInfo:(NSDictionary *)ext;
- @end
|