1、变更推送为阿里云推,清除云信IM以及推送内容;
2、消息页面全新改版; 3、部分微小Bug修复
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
//
|
||||
// EMASBeaconService.h
|
||||
// AlicloudBeacon
|
||||
//
|
||||
// Created by junmo on 2017/7/6.
|
||||
// Copyright © 2017年 junmo. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef EMASBeaconService_h
|
||||
#define EMASBeaconService_h
|
||||
|
||||
@interface EMASBeaconConfiguration : NSObject
|
||||
|
||||
- (instancetype)initWithData:(NSData *)data;
|
||||
- (id)getConfigureItemByKey:(NSString *)key;
|
||||
|
||||
@end
|
||||
|
||||
typedef void (^AlicloudBeaconCallbackHandler)(BOOL res, NSError *error);
|
||||
|
||||
@interface EMASBeaconService : NSObject
|
||||
|
||||
- (instancetype)initWithAppKey:(NSString *)appKey
|
||||
appSecret:(NSString *)appSecret
|
||||
SDKVersion:(NSString *)SDKVersion
|
||||
SDKID:(NSString *)SDKID;
|
||||
|
||||
- (instancetype)initWithAppKey:(NSString *)appKey
|
||||
appSecret:(NSString *)appSecret
|
||||
SDKVersion:(NSString *)SDKVersion
|
||||
SDKID:(NSString *)SDKID
|
||||
extension:(NSDictionary *)extension;
|
||||
|
||||
- (void)enableLog:(BOOL)enabled;
|
||||
- (BOOL)isLogEnabled;
|
||||
|
||||
//- (void)getBeaconConfigByKey:(NSString *)key
|
||||
// completionHandler:(void(^)(EMASBeaconConfiguration *configuration, NSError *error))completionHandler;
|
||||
|
||||
- (void)getBeaconConfigStringByKey:(NSString *)key
|
||||
completionHandler:(void(^)(NSString *result, NSError *error))completionHandler;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* EMASBeaconService_h */
|
||||
Reference in New Issue
Block a user