15 lines
263 B
Objective-C
15 lines
263 B
Objective-C
#import "LSNSURLHook.h"
|
|
#import "LSHTTPStubURLProtocol.h"
|
|
|
|
@implementation LSNSURLHook
|
|
|
|
- (void)load {
|
|
[NSURLProtocol registerClass:[LSHTTPStubURLProtocol class]];
|
|
}
|
|
|
|
- (void)unload {
|
|
[NSURLProtocol unregisterClass:[LSHTTPStubURLProtocol class]];
|
|
}
|
|
|
|
@end
|