Skip to content

UserNotifications iOS xcode16.0 b1

Rolf Bjarne Kvinge edited this page Aug 19, 2024 · 3 revisions

#UserNotifications.framework https://github.com/xamarin/xamarin-macios/pull/21066

diff -ruN /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttributedMessageContext.h /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttributedMessageContext.h --- /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttributedMessageContext.h	1970-01-01 01:00:00 +++ /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttributedMessageContext.h	2024-05-30 10:33:59 @@ -0,0 +1,24 @@ +// +// UNNotificationAttributedMessageContext.h +// UserNotifications +// +// Copyright © 2024 Apple Inc. All rights reserved. +// + +#import <Foundation/Foundation.h> +#import <UserNotifications/UNNotificationContent.h> + +@class INSendMessageIntent; + +NS_ASSUME_NONNULL_BEGIN + +API_AVAILABLE(macos(15.0), ios(18.0), watchos(11.0)) API_UNAVAILABLE(tvos) +@interface UNNotificationAttributedMessageContext : NSObject <UNNotificationContentProviding> + ++ (instancetype)contextWithSendMessageIntent:(INSendMessageIntent *)sendMessageIntent attributedContent:(NSAttributedString *)attributedContent; + +- (instancetype)init NS_UNAVAILABLE; + +@end + +NS_ASSUME_NONNULL_END diff -ruN /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h --- /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h	2024-04-13 15:15:47 +++ /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h	2024-05-30 10:33:59 @@ -11,6 +11,7 @@ #import <UserNotifications/UNNotificationAction.h> #import <UserNotifications/UNNotificationActionIcon.h> #import <UserNotifications/UNNotificationAttachment.h> +#import <UserNotifications/UNNotificationAttributedMessageContext.h> #import <UserNotifications/UNNotificationCategory.h> #import <UserNotifications/UNNotificationContent.h> #import <UserNotifications/UNNotificationRequest.h> 
Clone this wiki locally