-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdSupport.framework.h
More file actions
38 lines (24 loc) · 891 Bytes
/
AdSupport.framework.h
File metadata and controls
38 lines (24 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// ========== AdSupport.framework/Headers/AdSupport.h
/*
File: AdSupport.h
Framework: AdSupport
Copyright (c) 2012, Apple Inc. All rights reserved.
*/
#ifndef AdSupport_AdSupport_h
#define AdSupport_AdSupport_h
#import <AdSupport/ASIdentifierManager.h>
#endif// ========== AdSupport.framework/Headers/ASIdentifierManager.h
/*
File: ASIdentifierManager.h
Framework: AdSupport
Copyright (c) 2012, Apple Inc. All rights reserved.
*/
#import <Foundation/Foundation.h>
#import <os/availability.h>
NS_CLASS_AVAILABLE(10_14, 6_0)
@interface ASIdentifierManager : NSObject
+ (ASIdentifierManager * _Nonnull)sharedManager;
- (void)clearAdvertisingIdentifier API_UNAVAILABLE(ios, tvos);
@property (nonnull, nonatomic, readonly) NSUUID *advertisingIdentifier;
@property (nonatomic, readonly, getter=isAdvertisingTrackingEnabled) BOOL advertisingTrackingEnabled;
@end