Skip to content

CoreTelephony macOS xcode9 beta4

Sebastien Pouliot edited this page Jul 24, 2017 · 2 revisions

#CoreTelephony.framework

diff -ruN /Applications/Xcode9-beta3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreTelephony.framework/Headers/CTSubscriber.h /Applications/Xcode9-beta4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreTelephony.framework/Headers/CTSubscriber.h
--- /Applications/Xcode9-beta3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreTelephony.framework/Headers/CTSubscriber.h	2017-06-30 01:37:50.000000000 -0400
+++ /Applications/Xcode9-beta4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreTelephony.framework/Headers/CTSubscriber.h	2017-07-13 23:18:19.000000000 -0400
@@ -27,10 +27,15 @@
  *
  * Description:
  *     A data blob containing authorization information about the subscriber.
+ *     This API has been deprecated but continues to work as it did in iOS 10.
+ *     In a future release, this API will only return nil.
  *
  *     May return nil if no token is available.
  */
-@property (nonatomic, readonly, retain, nullable) NSData* carrierToken  __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_7_0);
+@property (nonatomic, readonly, retain, nullable) NSData* carrierToken
+__API_UNAVAILABLE(macos, watchos, tvos)
+__API_DEPRECATED("Deprecated and will always return nil in a future release.", ios(7.0, 11.0))
+;
 
 @end
 
Clone this wiki locally