1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// __ __ ________
// | | | | \ \ / / | | | | / _______|
// | |____| | \ \/ / | |____| | / /
// | |____| | \ / | |____| | | | _____
// | | | | / \ | | | | | | |____ |
// | | | | / /\ \ | | | | \ \______| |
// | | | | /_/ \_\ | | | | \_________|
//
// Copyright (c) 2012年 HXHG. All rights reserved.
// http://www.jpush.cn
// Created by liangjianguo
//
#import <Foundation/Foundation.h>
#import <JMessage/JMessage.h>
//static NSString *JMessageAppKey;
@interface JMessageHelper : NSObject<JMessageDelegate>
@property(nonatomic, strong)NSString *JMessageAppKey;
@property(strong,nonatomic)NSDictionary *launchOptions;
+ (JMessageHelper *)shareInstance;
-(void)initJMessage:(NSDictionary*)launchOptions;
@end
@interface NSArray (JMessage)
- (NSArray *)mapObjectsUsingBlock:(id (^)(id obj, NSUInteger idx))block;
@end
@interface NSDictionary (JMessage)
-(NSString*)toJsonString;
@end
@interface NSString (JMessage)
-(NSDictionary*)toDictionary;
@end
@interface JMSGConversation (JMessage)
-(NSMutableDictionary*)conversationToDictionary;
@end
@interface JMSGUser (JMessage)
-(NSMutableDictionary*)userToDictionary;
@end
@interface JMSGGroup (JMessage)
-(NSMutableDictionary*)groupToDictionary;
@end
@interface JMSGMessage (JMessage)
- (NSMutableDictionary *)messageToDictionary;
@end
@interface JMSGChatRoom (JMessage)
- (NSMutableDictionary *)chatRoomToDictionary;
@end