cdts/xdts-ios 3/Pods/GTExtensionSDK/GTExtensionSDK.framework/Headers/GeTuiExtSdk.h
2023-07-27 09:20:00 +08:00

37 lines
898 B
Objective-C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// GeTuiExtSdk.h
// GtExtensionSdk
//
// Created by gexin on 16/9/14.
// Copyright © 2016年 getui. All rights reserved.
//
// GTExtensionSDK-Version: 2.5.7
#import <Foundation/Foundation.h>
#import <UserNotifications/UserNotifications.h>
@interface GeTuiExtSdk : NSObject
/**
* 设置语音播报的类(系统的还是其它第三方的)
*/
+ (void)setVoicePlayClass:(id)aClass __attribute((deprecated("该接口已经废弃")));
/**
* 统计APNs到达情况和多媒体推送支持, 建议使用该接口
*/
+ (void)handelNotificationServiceRequest:(UNNotificationRequest *)request withAttachmentsComplete:(void (^)(NSArray *attachments, NSArray *errors))completeBlock;
/**
* 设置 App Groups Id (如有使用 iOS Extension SDK请设置该值)
*/
+ (void)setApplicationGroupIdentifier:(NSString*)identifier;
/**
* sdk销毁资源释放
*/
+ (void)destory;
@end