当前位置: 编程技术>移动开发
本页文章导读:
▪集成拨号盘,二句话的事情 集成拨号盘,2句话的事情
<intent-filter>
<actionandroid:name="android.intent.action.CALL_PRIVILEGED"/>
<categoryandroid:name="android.intent.category.DEFAULT"/>
<dataandroid:scheme="tel"/>
</intent-filter>
.........
▪ 批改navigation的默认返回按钮名字 修改navigation的默认返回按钮名字
在父viewController中如下设置: UIBarButtonItem *backbutton = [[UIBarButtonItem alloc]init]; backbutton.title = @"返回列表"; self.navigationItem.backBarButtonItem = backbutton;.........
▪ Apple Push Notification Service小结 Apple Push Notification Service总结
苹果推送通知服务使用总结1. 在 Mac 上从 KeyChain Access 程序生成一个密钥对和签名请求 2. APPLE开发者中心,进入"Identifiers" - "App IDs", 注册App ID,注意在App Services.........
[1]集成拨号盘,二句话的事情
来源: 互联网 发布时间: 2014-02-18
集成拨号盘,2句话的事情
<intent-filter> <actionandroid:name="android.intent.action.CALL_PRIVILEGED"/> <categoryandroid:name="android.intent.category.DEFAULT"/> <dataandroid:scheme="tel"/> </intent-filter>
[2] 批改navigation的默认返回按钮名字
来源: 互联网 发布时间: 2014-02-18
修改navigation的默认返回按钮名字
在父viewController中如下设置:
UIBarButtonItem *backbutton = [[UIBarButtonItem alloc]init];
backbutton.title = @"返回列表";
self.navigationItem.backBarButtonItem = backbutton;
[backbutton release];
在父viewController中如下设置:
UIBarButtonItem *backbutton = [[UIBarButtonItem alloc]init];
backbutton.title = @"返回列表";
self.navigationItem.backBarButtonItem = backbutton;
[backbutton release];
[3] Apple Push Notification Service小结
来源: 互联网 发布时间: 2014-02-18
Apple Push Notification Service总结
苹果推送通知服务使用总结
1. 在 Mac 上从 KeyChain Access 程序生成一个密钥对和签名请求
2. APPLE开发者中心,进入"Identifiers" - "App IDs", 注册App ID,注意在App Services中勾选Push Notifications,表示该APP需要使用推送通知服务
3. 进入“Certificates” - "Development",新增一个证书, 选择"Apple Push Notification service SSL (Sandbox)",根据实际情况选择,生产环境时需要重新生成证书
4. 进入"Provisioning Profiles" - "Development", 针对已注册的APP ID生成对应的Provisioning Profiles
5. 以上生成的各种证书下载到本地安装,然后在Key Chain中导出为2个文件,一个".p12",一个“.cer”
6. 在终端输入以下命令来生成公钥和私钥的pem
$ openssl x509 -in cert.cer -inform DER -outform PEM -out cert.pem
$ openssl pkcs12 -in key.p12 -out key.pem -nodes
7. 将生成的两个pem合成为一个,在终端执行
$ cat cert.pem key.pem > ck.pem
8. 然后用php文件测试
"未找到应用程序的“aps-environment”的权利字符串""
出现这个错误是因为APP的证书不对,可能用的还是开发者证书,而应该使用的是含有Push Notification服务的新注册的证书
如果测试的PHP文件报错,记得检查".pem"文件的位置和文件名称是否跟php文件内的一致
"ck.pem"
参考资料:
http://www.ibm.com/developerworks/cn/mobile/mo-ios-push/
http://www.ityran.com/archives/194 Part1
http://www.ityran.com/archives/281 Part2
http://www.ityran.com/archives/240 Part3
http://saeapns.sinaapp.com/doc.html
苹果推送通知服务使用总结
1. 在 Mac 上从 KeyChain Access 程序生成一个密钥对和签名请求
2. APPLE开发者中心,进入"Identifiers" - "App IDs", 注册App ID,注意在App Services中勾选Push Notifications,表示该APP需要使用推送通知服务
3. 进入“Certificates” - "Development",新增一个证书, 选择"Apple Push Notification service SSL (Sandbox)",根据实际情况选择,生产环境时需要重新生成证书
4. 进入"Provisioning Profiles" - "Development", 针对已注册的APP ID生成对应的Provisioning Profiles
5. 以上生成的各种证书下载到本地安装,然后在Key Chain中导出为2个文件,一个".p12",一个“.cer”
6. 在终端输入以下命令来生成公钥和私钥的pem
$ openssl x509 -in cert.cer -inform DER -outform PEM -out cert.pem
$ openssl pkcs12 -in key.p12 -out key.pem -nodes
7. 将生成的两个pem合成为一个,在终端执行
$ cat cert.pem key.pem > ck.pem
8. 然后用php文件测试
"未找到应用程序的“aps-environment”的权利字符串""
出现这个错误是因为APP的证书不对,可能用的还是开发者证书,而应该使用的是含有Push Notification服务的新注册的证书
如果测试的PHP文件报错,记得检查".pem"文件的位置和文件名称是否跟php文件内的一致
"ck.pem"
参考资料:
http://www.ibm.com/developerworks/cn/mobile/mo-ios-push/
http://www.ityran.com/archives/194 Part1
http://www.ityran.com/archives/281 Part2
http://www.ityran.com/archives/240 Part3
http://saeapns.sinaapp.com/doc.html
最新技术文章: