-
Notifications
You must be signed in to change notification settings - Fork 0
/
IdentityLookupUI.framework.h
69 lines (51 loc) · 2.21 KB
/
IdentityLookupUI.framework.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// ========== IdentityLookupUI.framework/Headers/IdentityLookupUI.h
//
// IdentityLookupUI.h
// IdentityLookupUI
//
// Copyright © 2018 Apple. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <IdentityLookupUI/ILClassificationUIExtensionContext.h>
#import <IdentityLookupUI/ILClassificationUIExtensionViewController.h>
// ========== IdentityLookupUI.framework/Headers/ILClassificationUIExtensionContext.h
//
// ILClassificationUIExtensionContext.h
// IdentityLookup
//
// Copyright © 2018 Apple. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <IdentityLookup/IdentityLookup.h>
NS_ASSUME_NONNULL_BEGIN
@class ILClassificationResponse;
/// Represents a Classification UI extension request's context.
IL_EXTERN API_AVAILABLE(ios(12.0), uikitformac(13.0)) API_UNAVAILABLE( macos, tvos, watchos)
@interface ILClassificationUIExtensionContext : NSExtensionContext
@property (nonatomic, getter=isReadyForClassificationResponse) BOOL readyForClassificationResponse;
@end
NS_ASSUME_NONNULL_END
// ========== IdentityLookupUI.framework/Headers/ILClassificationUIExtensionViewController.h
//
// ILClassificationUIExtensionViewController.h
// IdentityLookupUI
//
// Copyright © 2018 Apple. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class ILClassificationUIExtensionContext;
@class ILClassificationResponse;
@class ILClassificationRequest;
/// Represents a view controller to subclass for displaying classification UI
IL_EXTERN API_AVAILABLE(ios(12.0), uikitformac(13.0)) API_UNAVAILABLE( macos, tvos, watchos)
@interface ILClassificationUIExtensionViewController : UIViewController
/// The extension context to use for completing the classification request
@property (nonatomic, readonly, strong) ILClassificationUIExtensionContext *extensionContext;
/// Override to customize UI based on the classification request before the view is loaded
- (void)prepareForClassificationRequest:(__kindof ILClassificationRequest *)request;
/// Override to provide a classification response for the classification request
- (ILClassificationResponse *)classificationResponseForRequest:(__kindof ILClassificationRequest *)request;
@end
NS_ASSUME_NONNULL_END