|
@@ -30,6 +30,12 @@
|
|
|
/// The response cache uses an NSCache, so it may purge prior to hitting the limit when the app is under memory pressure.
|
|
/// The response cache uses an NSCache, so it may purge prior to hitting the limit when the app is under memory pressure.
|
|
|
@property (nonatomic, assign) NSUInteger networkResponseCacheByteLimit;
|
|
@property (nonatomic, assign) NSUInteger networkResponseCacheByteLimit;
|
|
|
|
|
|
|
|
|
|
+/// Requests whose host ends with one of the blacklisted entries in this array will be not be recorded (eg. google.com).
|
|
|
|
|
+/// Wildcard or subdomain entries are not required (eg. google.com will match any subdomain under google.com).
|
|
|
|
|
+/// Useful to remove requests that are typically noisy, such as analytics requests that you aren't interested in tracking.
|
|
|
|
|
+@property (nonatomic, copy) NSArray<NSString *> *networkRequestHostBlacklist;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
#pragma mark - Keyboard Shortcuts
|
|
#pragma mark - Keyboard Shortcuts
|
|
|
|
|
|
|
|
/// Simulator keyboard shortcuts are enabled by default.
|
|
/// Simulator keyboard shortcuts are enabled by default.
|