CoreJPush (持续关注[信息公告牌](https://github.com/CharlinFeng/Show)) ========== #### CoreJPush,让您五句代码立即搞定JPush,集成到使用只需要3分钟。没错,3分钟!
# 一.框架准备 #### 1. 拖拽CoreJPush到您的项目中,并添加以下依赖框架 >.CFNetwork.framework
>.CoreFoundation.framework
>.CoreTelephony.framework
>.SystemConfiguration.framework
>.Security.framework
>.libz.dylib
. (1) Search Paths 下的 User Header Search Paths 和 Library Search Paths为
$(PROJECT_DIR)/CoreJPush/CoreJPush/Lib
。
. (2) 选中Project-Target-Capabilities-Background Modes,勾选Remote Notifications。
. (3) 请修改CoreJPush框架内Common文件夹下PushConfig.plist的Appkey为您的Appkey。
请删除您的AppDelgate中所有有关推送的方法,因为CoreJPush内部已经封装。
#import "CoreJPush.h"
//注册JPush
[CoreJPush registerJPush:launchOptions];
//1.添加一个监听者:此监听者是遵循了CoreJPushProtocol协议
[CoreJPush addJPushListener:self];
//2.你需要在合适的地方(比如dealloc),移除监听者
[CoreJPush removeJPushListener:self];
//3.您已经遵循了CoreJPushProtocol协议,直接在.m文件里面敲did ,Xcode会提示你如下方法:
-(void)didReceiveRemoteNotification:(NSDictionary *)userInfo{
NSLog(@"ViewController: %@",userInfo);
}
[CoreJPush setTags:[NSSet setWithArray:@[@"movie"]] alias:@"12343242" resBlock:^(BOOL res, NSSet *tags, NSString *alias) {
if(res){
NSLog(@"设置成功:%@,%@",@(res),tags,alias);
}else{
NSLog(@"设置失败");
}
}];