MiscNetworkRequests.h 466 B

12345678910111213141516171819202122
  1. //
  2. // MiscNetworkRequests.h
  3. // FLEXample
  4. //
  5. // Created by Tanner on 3/12/20.
  6. // Copyright © 2020 Flipboard. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MiscNetworkRequests : NSObject <NSURLConnectionDataDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate>
  11. + (void)sendExampleRequests;
  12. @property (nonatomic, nullable) NSMutableArray<NSURLConnection *> *connections;
  13. @end
  14. NS_ASSUME_NONNULL_END