新开商户可免费发送累计5000元总额的红包,超过5000元后,红包功能自动关闭,直到商户付费购买增值服务“红包功能”后,该功能重新开启,购买增值服务请咨询环信商务经理。
RedpacketAliPay
RedpacketJDPay
RedpacketCell
RedpacketCellResource.bundle
RedpacketChatViewController
ChatViewController
RedpacketUserConfig
红包SDK初始化文件
ChatDemo-UI3.0
默认支持支付宝版红包SDK
ChatDemo-UI3.0-JDPay
支持钱包版SDK
修改Podfile
支持两个红包SDK版本
target 'ChatDemo-UI3.0' do
...
...
pod 'RedpacketAliAuthLib' # 支付宝版红包SDK
end
target 'ChatDemo-UI3.0-JDPay' do
...
...
pod 'RedpacketLib' # 钱包版红包SDK
end
在ChatDemo-UI3.0-Prefix.pch
文件中有如下宏定义, 注销掉此宏定义则可以关闭红包功能。
#define REDPACKET_AVALABLE
请在环信Demo中获取RedpacketSDK
开源部分
在工程中导入RedpacketSDK
开源模块
修改Podfile,如果是支付宝版SDK则加入pod 'RedpacketAliAuthLib' 如果是钱包版SDK则加入pod 'RedpacketLib'
修改文件Appdelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
...
...
#ifdef REDPACKET_AVALABLE
/**
* TODO: 通过环信的AppKey注册红包
*/
[[RedPacketUserConfig sharedConfig] configWithAppKey:EaseMobAppKey];
#endif
...
...
用带有收发红包功能的RedPacketChatViewController
替换EaseUI的ChatViewController
支付宝版为红包记录
钱包版为零钱页
在SettingsViewController.m
中增加此功能
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
...
...
#ifdef REDPACKET_AVALABLE
if (indexPath.section == 0) {
cell.textLabel.text = @"零钱";
#ifdef AliAuthPay
cell.textLabel.text = @"红包记录";
#endif
}else if (indexPath.section == 1) {
#else
if (indexPath.section == 0) {
#endif
...
...
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
#ifdef REDPACKET_AVALABLE
if (indexPath.section == 0) {
/** 如果是钱包版SDK则是零钱页,如果是支付宝版SDK则是红包记录页*/
[RedpacketViewControl presentChangePocketViewControllerFromeController:self];
return;
}
#endif
...
...
修改文件ChatDemoHelper.m
- (void)initHelper
{
#ifdef REDPACKET_AVALABLE
[[RedPacketUserConfig sharedConfig] beginObserveMessage];
#endif
...
...
}
#ifdef REDPACKET_AVALABLE
/**
* 屏蔽红包被抢消息的提示
*/
NSDictionary *dict = message.ext;
needShowNotification = (dict && [dict valueForKey:RedpacketKeyRedpacketTakenMessageSign]) ? NO : needShowNotification;
#endif
上一页:私有云SDK集成配置
下一页:APNs推送