-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoreTelephony.framework.h
More file actions
544 lines (444 loc) · 18.5 KB
/
CoreTelephony.framework.h
File metadata and controls
544 lines (444 loc) · 18.5 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
// ========== CoreTelephony.framework/Headers/CTCallCenter.h
/*
* CTCallCenter.h
* CFTelephony
*
* Copyright 2010 Apple, Inc. All rights reserved.
*
*/
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
@class CTCall;
NS_ASSUME_NONNULL_BEGIN
CORETELEPHONY_CLASS_DEPRECATED(4_0, 10_0, "Replaced by CXCallObserver from CallKit.framework")
@interface CTCallCenter : NSObject
/*
* currentCalls
*
* Discussion:
* An array containing CTCall objects for all calls that are currently
* in progress. If no calls are active, this will be nil.
*
*/
@property(readonly, retain, nullable) NSSet<CTCall*> *currentCalls __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCallObserver.h>");
/*
* callEventHandler
*
* Discussion:
* A block that will be dispatched on the default priority global dispatch
* queue when a new call event occurs. Set this property to a block
* that is defined in your application to handle call events.
*/
@property(nonatomic, copy, nullable) void (^callEventHandler)(CTCall*) __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCallObserver.h>");
@end
NS_ASSUME_NONNULL_END
// ========== CoreTelephony.framework/Headers/CTTelephonyNetworkInfo.h
/*
* CTTelephonyNetworkInfo.h
* CoreTelephony
*
* Copyright 2009 Apple Inc. All rights reserved.
*
*/
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
NS_ASSUME_NONNULL_BEGIN
/*
* CTServiceRadioAccessTechnologyDataTechnologyDidChangeNotification
*
* Description:
* A NSNotification broadcast when radio access technology changes for one of the services. Only an object is sent with
* this notfication. The object is an NSString that represents the service identifier of the service whose radio access
* technology has changed. This NSString should be used as the key in serviceCurrentRadioAccessTechnology to get the
* value of the new radio access technology for the service.
*/
CORETELEPHONY_EXTERN NSString * const CTServiceRadioAccessTechnologyDidChangeNotification API_AVAILABLE(ios(12.0), watchos(5.0)) API_UNAVAILABLE(macos, tvos);
/*
* CTRadioAccessTechnologyDataTechnologyDidChangeNotification
*
* Description:
* A NSNotification broadcast when radio access technology changes
*/
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyDidChangeNotification API_DEPRECATED_WITH_REPLACEMENT("CTServiceRadioAccessTechnologyDidChangeNotification", ios(7.0, 12.0)) API_UNAVAILABLE(macos);
/*
* Radio Access Technology values
*/
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyGPRS API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyEdge API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyWCDMA API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyHSDPA API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyHSUPA API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyCDMA1x API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyCDMAEVDORev0 API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyCDMAEVDORevA API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyCDMAEVDORevB API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyeHRPD API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
CORETELEPHONY_EXTERN NSString * const CTRadioAccessTechnologyLTE API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(macos);
@class CTCarrier;
/*
* CTTelephonyNetworkInfoDelegate
*
* Discussion:
* Delegate interface for CTTelephonyNetworkInfo.
* All delegate callbacks are dispatched asynchronously to a global queue with QoS QOS_CLASS_DEFAULT.
*/
API_AVAILABLE(ios(13.0), watchos(6.0)) API_UNAVAILABLE(macos, tvos)
@protocol CTTelephonyNetworkInfoDelegate <NSObject>
@optional
/*
* dataServiceIdentifierDidChange:
*
* Discussion:
* Selector to be invoked whenever the data service identifier changes.
* This identifier is meant to be used as a key in associated dictionaries,
* e.g. serviceSubscriberCellularProviders.
*/
- (void)dataServiceIdentifierDidChange:(NSString *)identifier;
@end
/*
* CTTelephonyNetworkInfo
*
* Discussion:
* The CTTelephonyNetworkInfo object is your entry point to the telephony service.
*/
CORETELEPHONY_CLASS_AVAILABLE(4_0)
@interface CTTelephonyNetworkInfo : NSObject
/*
* dataServiceIdentifier
*
* Discussion:
* An NSString representing the identifier of the service that's currently providing data.
*/
@property(readonly, copy, nullable) NSString *dataServiceIdentifier API_AVAILABLE(ios(13.0), watchos(6.0)) API_UNAVAILABLE(macos, tvos);
@property(readwrite, weak, nullable) id<CTTelephonyNetworkInfoDelegate> delegate API_AVAILABLE(ios(13.0), watchos(6.0)) API_UNAVAILABLE(macos, tvos);
/*
* serviceSubscriberCellularProviders
*
* Discussion:
* A dictionary containing CTCarrier objects for each service that contains information about the subscriber's
* home cellular service provider. The key to the dictionary is an NSString representing the service.
*/
@property(readonly, retain, nullable) NSDictionary<NSString *, CTCarrier *> *serviceSubscriberCellularProviders API_AVAILABLE(ios(12.0), watchos(5.0)) API_UNAVAILABLE(macos, tvos);
/*
* subscriberCellularProvider
*
* Discussion:
* A CTCarrier object that contains information about the subscriber's
* home cellular service provider for the service.
*/
@property(readonly, retain, nullable) CTCarrier *subscriberCellularProvider __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_12_0,
"Replaced by serviceSubscriberCellularProviders");
/*
* serviceSubscriberCellularProvidersDidUpdateNotifier
*
* Discussion:
* A block that will be dispatched on the default priority global dispatch
* queue when the subscriber's cellular provider information updates for any service. Set
* this property to a block that is defined in your application to receive the newly
* updated information. The NSString will contain the service identifier of the service
* whose information has changed. This can be used as the key into serviceSubscriberCellularProvider
* to obtain the new information.
*/
@property(nonatomic, copy, nullable) void (^serviceSubscriberCellularProvidersDidUpdateNotifier)(NSString*) API_AVAILABLE(ios(12.0), watchos(5.0)) API_UNAVAILABLE(macos, tvos);
/*
* subscriberCellularProviderDidUpdateNotifier
*
* Discussion:
* A block that will be dispatched on the default priority global dispatch queue when
* the subscriber's cellular provider information updates for the service. Set this
* property to a block that is defined in your application to receive the newly
* updated information.
*/
@property(nonatomic, copy, nullable) void (^subscriberCellularProviderDidUpdateNotifier)(CTCarrier*) API_DEPRECATED_WITH_REPLACEMENT("serviceSubscriberCellularProvidersDidUpdateNotifier", ios(4.0, 12.0)) API_UNAVAILABLE(macos);
/*
* serviceCurrentRadioAccessTechnology
*
* Discussion:
* A dictionary containing the current radio access technology each service is registered. The key to the dictionary
* is an NSString representing the service. An entry may be nil if the service is not registered on any network.
*/
@property (nonatomic, readonly, retain, nullable) NSDictionary<NSString *, NSString *> * serviceCurrentRadioAccessTechnology API_AVAILABLE(ios(12.0), watchos(5.0)) API_UNAVAILABLE(macos, tvos);
/*
* currentRadioAccessTechnology
*
* Discussion:
* The current radio access technology for each service of the device is registered with. May be nil
* if the device is not registered on any network.
*/
@property (nonatomic, readonly, retain, nullable) NSString* currentRadioAccessTechnology API_DEPRECATED_WITH_REPLACEMENT("serviceCurrentRadioAccessTechnology", ios(7.0, 12.0)) API_UNAVAILABLE(macos);
@end
NS_ASSUME_NONNULL_END
// ========== CoreTelephony.framework/Headers/CTCellularData.h
//
// CTCellularData.h
// CFTelephony
//
// Copyright (c) 2015 Apple Inc. All rights reserved.
//
#import <CoreTelephony/CoreTelephonyDefines.h>
typedef NS_ENUM(NSUInteger, CTCellularDataRestrictedState) {
kCTCellularDataRestrictedStateUnknown,
kCTCellularDataRestricted,
kCTCellularDataNotRestricted
};
typedef void (^CellularDataRestrictionDidUpdateNotifier)(CTCellularDataRestrictedState);
NS_ASSUME_NONNULL_BEGIN
CORETELEPHONY_CLASS_AVAILABLE(9_0)
@interface CTCellularData : NSObject
/*
* cellularDataRestrictionDidUpdateNotifier
*
* A block that will be dispatched on the default priority global dispatch queue the first time
* app sets the callback handler and everytime there is a change in cellular data allowed policy
* for the app.
*/
@property (copy, nullable) CellularDataRestrictionDidUpdateNotifier cellularDataRestrictionDidUpdateNotifier __OSX_AVAILABLE_STARTING(__MAC_NA, __IPHONE_9_0);
@property (nonatomic, readonly) CTCellularDataRestrictedState restrictedState __OSX_AVAILABLE_STARTING(__MAC_NA, __IPHONE_9_0);
@end
NS_ASSUME_NONNULL_END
// ========== CoreTelephony.framework/Headers/CTCellularPlanProvisioningRequest.h
//
// CTCellularPlanProvisioningRequest.h
// CFTelephony
//
// Copyright (c) 2018 Apple Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
typedef NS_ENUM(NSUInteger, CTCellularPlanProvisioningAddPlanResult) {
CTCellularPlanProvisioningAddPlanResultUnknown,
CTCellularPlanProvisioningAddPlanResultFail,
CTCellularPlanProvisioningAddPlanResultSuccess
};
CORETELEPHONY_EXTERN_CLASS
@interface CTCellularPlanProvisioningRequest : NSObject<NSSecureCoding>
@property (nonatomic, strong, nonnull) NSString *address;
@property (nonatomic, strong, nullable) NSString *matchingID;
@property (nonatomic, strong, nullable) NSString *OID;
@property (nonatomic, strong, nullable) NSString *confirmationCode;
@property (nonatomic, strong, nullable) NSString *ICCID;
@property (nonatomic, strong, nullable) NSString *EID;
@end
// ========== CoreTelephony.framework/Headers/CoreTelephonyDefines.h
/*
* CoreTelephonyDefines.h
* CFTelephony
*
* Copyright 2010 Apple Inc. All rights reserved.
*
*/
// Macros to export a symbol from the CoreTelephony library
#ifndef __CORETELEPHONY_DEFINES_H__
#define __CORETELEPHONY_DEFINES_H__
#ifdef __cplusplus
#define CORETELEPHONY_EXTERN extern "C" __attribute__((visibility ("default")))
#else
#define CORETELEPHONY_EXTERN extern __attribute__((visibility ("default")))
#endif
#define CORETELEPHONY_EXTERN_CLASS __attribute__((visibility("default")))
#define CORETELEPHONY_CLASS_AVAILABLE(_iphoneIntro) __attribute__((visibility("default"))) NS_CLASS_AVAILABLE(NA, _iphoneIntro)
#define CORETELEPHONY_CLASS_DEPRECATED(_introOS, _deprecatedOS, _msg) __attribute__((visibility("default"))) NS_CLASS_DEPRECATED_IOS(_introOS, _deprecatedOS, _msg)
#include <CoreFoundation/CoreFoundation.h> // need this for SInt32
enum {
kCTErrorDomainNoError = 0,
kCTErrorDomainPOSIX = 1, /* POSIX error listed in sys/errno.h */
kCTErrorDomainMach /* mach error listed in mach/error.h */
};
typedef struct {
SInt32 domain;
SInt32 error;
} CTError;
#endif
// ========== CoreTelephony.framework/Headers/CTSubscriberInfo.h
/*
* CTSubscriberInfo.h
* CFTelephony
*
* Copyright 2012 Apple, Inc. All rights reserved.
*
*/
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
#import <CoreTelephony/CTSubscriber.h>
NS_ASSUME_NONNULL_BEGIN
CORETELEPHONY_CLASS_AVAILABLE(6_0)
@interface CTSubscriberInfo : NSObject
+ (NSArray<CTSubscriber *> *)subscribers
API_AVAILABLE(ios(12.1))
;
+ (CTSubscriber*) subscriber
API_DEPRECATED_WITH_REPLACEMENT("Use subscribers instead", ios(6.0, 12.1))
;
@end
NS_ASSUME_NONNULL_END
// ========== CoreTelephony.framework/Headers/CTSubscriber.h
/*
* CTSubscriber.h
* CoreTelephony
*
* Copyright 2012 Apple, Inc.. All rights reserved.
*
*/
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
NS_ASSUME_NONNULL_BEGIN
/*
* CTSubscriberTokenRefreshed
*
* Description:
* The name of the NSNotification sent when the carrier token is available.
* The `object' argument is set to the CTSubscriber instance for which the token was refreshed.
*/
CORETELEPHONY_EXTERN NSString * const CTSubscriberTokenRefreshed
API_UNAVAILABLE(macos)
API_DEPRECATED_WITH_REPLACEMENT("-[CTSubscriberDelegate subscriberTokenRefreshed:]", ios(7.0, 12.1))
;
@class CTSubscriber;
@protocol CTSubscriberDelegate
- (void)subscriberTokenRefreshed:(CTSubscriber *)subscriber;
@end
CORETELEPHONY_CLASS_AVAILABLE(7_0)
@interface CTSubscriber : NSObject
/*
* carrierToken
*
* Description:
* A data blob containing authorization information about the subscriber.
* This API is deprecated without replacement. Starting in iOS 11.3, this API returns nil.
*/
@property (nonatomic, readonly, retain, nullable) NSData* carrierToken
API_UNAVAILABLE(macos, watchos, tvos)
API_DEPRECATED("Deprecated; returns nil starting in iOS 11.3.", ios(7.0, 11.0))
;
/*
* identifier
*
* Description:
* An implementation-defined identifier that can be used to correlate this CTSubscriber
* with information vended by other API's.
* The format of the identifier can change across software releases. Therefore, applications
* should not persist it.
*/
@property (nonatomic, readonly) NSString* identifier
API_UNAVAILABLE(macos)
API_AVAILABLE(ios(12.1))
;
@property (nonatomic, weak) id<CTSubscriberDelegate> delegate
API_UNAVAILABLE(macos)
API_AVAILABLE(ios(12.1))
;
@end
NS_ASSUME_NONNULL_END
// ========== CoreTelephony.framework/Headers/CTCall.h
/*
* CTCall.h
* CFTelephony
*
* Copyright 2010 Apple, Inc. All rights reserved.
*
*/
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
NS_ASSUME_NONNULL_BEGIN
CORETELEPHONY_EXTERN NSString * const CTCallStateDialing __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCall.h> properties");
CORETELEPHONY_EXTERN NSString * const CTCallStateIncoming __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCall.h> properties");
CORETELEPHONY_EXTERN NSString * const CTCallStateConnected __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCall.h> properties");
CORETELEPHONY_EXTERN NSString * const CTCallStateDisconnected __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCall.h> properties");
CORETELEPHONY_CLASS_AVAILABLE(4_0)
@interface CTCall : NSObject
{
@private
NSString *_callState;
NSString *_callID;
}
/*
* callState
*
* Description:
* An NSString constant that describes the state of this call. The initial state
* will be either CTCallStateDialing or CTCallStateIncoming, will transition
* to CTCallStateConnected when the call is established with all parties
* involved and will move to CTCallStateDisconnected when this call is terminated.
*/
@property(nonatomic, readonly, copy) NSString *callState __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCall.h> properties");
/*
* callID
*
* Description:
* A unique identifier for this call to be used by clients to differentiate
* multiple active calls.
*/
@property(nonatomic, readonly, copy) NSString *callID __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_NA, __MAC_NA, __IPHONE_4_0, __IPHONE_10_0, "Replaced by <CallKit/CXCall.h> properties");
@end
NS_ASSUME_NONNULL_END
// ========== CoreTelephony.framework/Headers/CTCarrier.h
/*
* CTCarrier.h
* CoreTelephony
*
* Copyright 2009 Apple, Inc.. All rights reserved.
*
*/
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
NS_ASSUME_NONNULL_BEGIN
CORETELEPHONY_CLASS_AVAILABLE(4_0)
@interface CTCarrier : NSObject
/*
* carrierName
*
* Discussion:
* An NSString containing the name of the subscriber's cellular service provider.
*/
@property (nonatomic, readonly, retain, nullable) NSString *carrierName __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0);
/*
* mobileCountryCode
*
* Discussion:
* An NSString containing the mobile country code for the subscriber's
* cellular service provider, in its numeric representation
*/
@property (nonatomic, readonly, retain, nullable) NSString *mobileCountryCode __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0);
/*
* mobileNetworkCode
*
* Discussion:
* An NSString containing the mobile network code for the subscriber's
* cellular service provider, in its numeric representation
*/
@property (nonatomic, readonly, retain, nullable) NSString *mobileNetworkCode __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0);
/*
* isoCountryCode
*
* Discussion:
* Returns an NSString object that contains country code for
* the subscriber's cellular service provider, represented as an ISO 3166-1
* country code string
*/
@property (nonatomic, readonly, retain, nullable) NSString* isoCountryCode __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0);
/*
* allowsVOIP
*
* Discussion:
* A BOOL value that is YES if this carrier allows VOIP calls to be
* made on its network, NO otherwise.
*/
@property (nonatomic, readonly, assign) BOOL allowsVOIP __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0);
@end
NS_ASSUME_NONNULL_END
// ========== CoreTelephony.framework/Headers/CTCellularPlanProvisioning.h
//
// CTCellularPlanProvisioning.h
// CoreTelephony
//
// Copyright (c) 2018 Apple Inc. All rights reserved.
#import <Foundation/Foundation.h>
#import <CoreTelephony/CoreTelephonyDefines.h>
#import <CoreTelephony/CTCellularPlanProvisioningRequest.h>
NS_ASSUME_NONNULL_BEGIN
CORETELEPHONY_CLASS_AVAILABLE(12_0)
@interface CTCellularPlanProvisioning : NSObject
- (BOOL)supportsCellularPlan __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_12_0);
- (void)addPlanWith:(CTCellularPlanProvisioningRequest *)request completionHandler:(void (^)(CTCellularPlanProvisioningAddPlanResult result))completionHandler __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_12_0);
@end
NS_ASSUME_NONNULL_END