maxzhang

Results 7 comments of maxzhang

已推送到最新一期奇舞周刊 http://www.75team.com/weekly/issue101.html

**" we recommend that organizations standardized on HTML5 development hold off upgrading until an iOS update fixes these issues."** 真是掩耳盗铃的做法,你不升,还不让用户升么,我都是第一时间升了beta1来改善iOS7的bug **"Launching and quitting the same home screen app several times...

`[email protected]` android环境,相同问题。iOS正常。 JS事件监听能收到push通知,但是不弹出通知栏。

我翻看了下阿里云推送官方文档,官方建议 **自建通知**。 参考:https://help.aliyun.com/document_detail/53546.html `[email protected]` 没有处理自建通知的逻辑,所以当APP处于 `background` 状态时,当然也就不弹通知栏,下面是源码: https://github.com/wonday/react-native-aliyun-push/blob/master/android/src/main/java/org/wonday/aliyun/push/AliyunPushMessageReceiver.java#L56 给一段我的代码参考: ```javascript handleAliyunPushMessage = (msg) => { console.debug('AliyunPush message received:', JSON.stringify(msg)) /* * `msg`结构说明: * msg.type: "notification":通知 或者 "message":消息 * msg.title: 推送通知/消息标题...

@charmtiger 以上描述的是,android环境,app处于`后台运行`中 也就是 `appState=background`。 iOS 无论是进程被杀死,还是后台运行,都能正确接收推送,并弹出通知。

遗漏了测试,应该是九项

更新1.0.6版,写成下面这样: ``` javascript var boxer = new TouchBox('#touchBoxCt', { loop: true, animation: 'slide' }); boxer.on('touchmove', function(activeIndex, offsetY) { console.log('touchmove, ', 'current index:', activeIndex, ' offsetY:', offsetY); return offsetY > 0;...