-
Notifications
You must be signed in to change notification settings - Fork 514
EventKit macOS xcode13.0 rc
Alex Soto edited this page Sep 14, 2021
·
1 revision
#EventKit.framework
diff -ruN /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceDescriptor.h /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceDescriptor.h
--- /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceDescriptor.h 2021-08-09 03:25:53.000000000 -0400
+++ /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceDescriptor.h 1969-12-31 19:00:00.000000000 -0500
@@ -1,109 +0,0 @@
-//
-// EKVirtualConferenceDescriptor.h
-// EventKit
-//
-// Copyright © 2021 Apple Inc. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-
-typedef NSString * EKVirtualConferenceRoomTypeIdentifier NS_SWIFT_BRIDGED_TYPEDEF API_AVAILABLE(macos(12.0), ios(15.0));
-
-
-/*!
- @class EKVirtualConferenceRoomTypeDescriptor
- @abstract Describes a virtual conference room type.
-*/
-API_AVAILABLE(macos(12.0), ios(15.0))
-@interface EKVirtualConferenceRoomTypeDescriptor : NSObject
-
-/*!
- @method initWithTitle:identifier:
- @abstract Initializes an instance of EKVirtualConferenceRoomTypeDescriptor.
- @param title A user-readable title describing this room type. This string will be
- displayed in UI.
- @param identifier An EKVirtualConferenceRoomTypeIdentifier that your extension can use to
- distinguish this room type from the other room types that your extension
- provides. This is chosen by your extension and is passed back to your
- extension if the user chooses to create a virtual conference of the
- associated room type.
-*/
-- (instancetype)initWithTitle:(NSString *)title identifier:(EKVirtualConferenceRoomTypeIdentifier)identifier NS_DESIGNATED_INITIALIZER;
-
-@property (readonly, nonatomic, copy) NSString *title;
-@property (readonly, nonatomic, copy) EKVirtualConferenceRoomTypeIdentifier identifier;
-
-- (instancetype)init NS_UNAVAILABLE;
-+ (instancetype)new NS_UNAVAILABLE;
-
-@end
-
-
-/*!
- @class EKVirtualConferenceURLDescriptor
- @abstract Describes a URL that can be used to join a virtual conference.
-*/
-API_AVAILABLE(macos(12.0), ios(15.0))
-@interface EKVirtualConferenceURLDescriptor : NSObject
-
-/*!
- @method initWithTitle:URL:
- @abstract Initializes an instance of EKVirtualConferenceURLDescriptor.
- @param title A user-readable title describing this URL. This string may be displayed
- in the UI. This string is optional and may be left nil. If your virtual
- conference only has one way to join it, then you can probably leave this
- nil. However, if your virtual conference has multiple ways to join it,
- you should have a title for each URL so that users can better understand
- what each URL represents.
- @param URL A URL that, when opened, will join the virtual conference.
-*/
-- (instancetype)initWithTitle:(nullable NSString *)title URL:(NSURL *)URL NS_DESIGNATED_INITIALIZER;
-
-@property (readonly, nonatomic, copy, nullable) NSString *title;
-@property (readonly, nonatomic, copy) NSURL *URL;
-
-- (instancetype)init NS_UNAVAILABLE;
-+ (instancetype)new NS_UNAVAILABLE;
-
-@end
-
-
-/*!
- @class EKVirtualConferenceDescriptor
- @abstract Describes a virtual conference.
-*/
-API_AVAILABLE(macos(12.0), ios(15.0))
-@interface EKVirtualConferenceDescriptor : NSObject
-
-/*!
- @method initWithTitle:URLDescriptors:conferenceDetails:
- @abstract Initializes an instance of EKVirtualConferenceDescriptor.
- @param title A user-readable title describing this virtual conference. This string
- may be displayed in the UI. This string is optional and may be left nil.
- @param URLDescriptors An array of EKVirtualConferenceURLDescriptors, representing the various
- ways to join your virtual conference. Do not pass an empty array. Your
- array should be ordered such that the most preferred method of joining
- the virtual conference comes first in the array, with subsequent methods
- of joining appearing in descending priority.
- @param conferenceDetails A user-readable string containing any other information you wish to
- communicate to the user about this virtual conference. This string will
- be displayed in the UI. This argument is optional and may be left nil.
-*/
-- (instancetype)initWithTitle:(nullable NSString *)title
- URLDescriptors:(NSArray<EKVirtualConferenceURLDescriptor *> *)URLDescriptors
- conferenceDetails:(nullable NSString *)conferenceDetails NS_DESIGNATED_INITIALIZER;
-
-@property (readonly, nonatomic, copy, nullable) NSString *title;
-@property (readonly, nonatomic, copy) NSArray<EKVirtualConferenceURLDescriptor *> *URLDescriptors;
-@property (readonly, nonatomic, copy, nullable) NSString *conferenceDetails;
-
-- (instancetype)init NS_UNAVAILABLE;
-+ (instancetype)new NS_UNAVAILABLE;
-
-@end
-
-
-NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceProvider.h /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceProvider.h
--- /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceProvider.h 2021-08-07 05:22:26.000000000 -0400
+++ /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EKVirtualConferenceProvider.h 1969-12-31 19:00:00.000000000 -0500
@@ -1,63 +0,0 @@
-//
-// EKVirtualConferenceProvider.h
-// EventKit
-//
-// Copyright © 2021 Apple Inc. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-#import <EventKit/EKVirtualConferenceDescriptor.h>
-
-
-NS_ASSUME_NONNULL_BEGIN
-
-
-/*!
- @class EKVirtualConferenceProvider
- @abstract Provides virtual conferences to Calendar.
- @discussion Subclass this class in your extension and override the below two methods.
-*/
-
-API_AVAILABLE(macos(12.0), ios(15.0))
-@interface EKVirtualConferenceProvider : NSObject <NSExtensionRequestHandling>
-
-/*!
- @method fetchAvailableRoomTypesWithCompletionHandler:
- @abstract Called to determine the available virtual conference room types that the user can add to a calendar event.
- @discussion Your extension must override this method in order to present virtual conference options in Calendar's UI.
- When your extension has finished determining what room types are available, call the completion handler with
- an array of EKVirtualConferenceRoomTypeDescriptors. Most extensions will only need to provide one room type.
- @param completionHandler A block to call when your extension has finished retrieving available room types. If
- your extension is unable to provide any room types at this time, call this block with nil
- for the first argument and an appropriate NSError object for the second argument. Do not
- call this block with nil for both arguments. Similarly, do not call this block with both
- a non-nil array and a non-nil NSError. This block must be called when your extension has
- finished its work.
-*/
-
-- (void)fetchAvailableRoomTypesWithCompletionHandler:(void(^)(NSArray<EKVirtualConferenceRoomTypeDescriptor *> * _Nullable, NSError * _Nullable))completionHandler;
-
-/*!
- @method fetchVirtualConferenceForIdentifier:completionHandler:
- @abstract Called to fetch the specific virtual conference details to add to an event.
- @discussion Your extension must override this method in order to add virtual conferences to calendar events.
- When your extension has finished retrieving the requested virtual conference details, create an
- EKVirtualConferenceDescriptor object containing the virtual conference details and call the completion handler
- with the EKVirtualConferenceDescriptor object as the first argument.
- @param identifier Represents the room type that the user chose. This is the same identifier that your extension
- chose for this EKVirtualConferenceRoomTypeDescriptor in an earlier call to
- fetchAvailableRoomTypesWithCompletionHandler:.
- @param completionHandler A block to call when your extension has finished retrieving the virtual conference details.
- If your extension is unable to retrieve virtual conference details at this time (for example,
- because network access is not available), call this block with nil for the first argument and
- an appropriate NSError object for the second argument. Do not call this block with nil for
- both arguments. Similarly, do not call this block with both a non-nil
- EKVirtualConferenceDescriptor and a non-nil NSError. This block must be called when your
- extension has finished its work.
-*/
-- (void)fetchVirtualConferenceForIdentifier:(EKVirtualConferenceRoomTypeIdentifier)identifier completionHandler:(void(^)(EKVirtualConferenceDescriptor * _Nullable, NSError * _Nullable))completionHandler;
-
-@end
-
-
-NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.apinotes /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.apinotes
--- /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.apinotes 2021-08-04 00:15:44.000000000 -0400
+++ /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.apinotes 2021-03-16 04:44:11.000000000 -0400
@@ -64,10 +64,3 @@
- Name: title
PropertyKind: Instance
Nullability: N
-- Version: 5
- Classes:
- - Name: EKVirtualConferenceProvider
- Methods:
- - Selector: 'fetchVirtualConferenceForIdentifier:completionHandler:'
- MethodKind: Instance
- SwiftName: 'fetchVirtualConference(identifier:completionHandler:)'
diff -ruN /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.h /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.h
--- /Applications/Xcode_13.0.0-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.h 2021-08-04 00:17:50.000000000 -0400
+++ /Applications/Xcode_13.0.0-rc.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Headers/EventKit.h 2021-03-16 04:44:11.000000000 -0400
@@ -23,7 +23,6 @@
#import <EventKit/EKReminder.h>
#import <EventKit/EKSource.h>
#import <EventKit/EKStructuredLocation.h>
-#import <EventKit/EKVirtualConferenceProvider.h>
#endif //#if __IPHONE_4_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
- README
- xcode13.0 Binding Status
- xcode13.1 Binding Status
- xcode13.2 Binding Status
- xcode13.3 Binding Status
- xcode13.4 Binding Status
- xcode14.0 Binding Status
- xcode14.1 Binding Status
- xcode14.2 Binding Status
- xcode14.3 Binding Status
- xcode15.0 Binding Status
- xcode15.1 Binding Status
- xcode15.3 Binding Status
- xcode15.4 Binding Status
- xcode16.0 Binding Status
- xcode16.1 Binding Status
- xcode16.2 Binding Status