2024-11-03 22:13:01 -08:00
|
|
|
//
|
2024-11-15 20:45:45 -08:00
|
|
|
// NSSharingService+Extension.m
|
2024-11-03 22:13:01 -08:00
|
|
|
// RSCore
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/3/24.
|
|
|
|
//
|
|
|
|
|
2024-11-15 20:45:45 -08:00
|
|
|
#import "NSSharingService+Extension.h"
|
2024-11-03 22:13:01 -08:00
|
|
|
|
|
|
|
@implementation NSSharingService (NoDeprecationWarning)
|
|
|
|
|
|
|
|
+ (NSArray *)sharingServicesForItems_noDeprecationWarning:(NSArray *)items {
|
|
|
|
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
return [NSSharingService sharingServicesForItems:items];
|
|
|
|
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|