ios - 使用 parse [Parse IOS] 从移动设备向特定用户发送推送通知
<p><p>我已将用户指针保存在安装类中。 Web 后端显示 0 个订阅者 <img src="/image/gu8XE.png" alt="Response"/> </p>
<p>我正在使用以下代码发送通知</p>
<pre><code> PFQuery *qry = ;
; //friend object is ok like @"Fefl5x7nhl"
PFQuery *pushQuery = ;
;
// Send push notification to query
PFPush *push = [ init];
NSString *msgString=[NSString stringWithFormat:@"%@ :%@",
,
tfEntry.text];
; // Set our Installation query
NSDictionary *data = [NSDictionary dictionaryWithObjectsAndKeys:
msgString, @"alert",
@"ursound.caf", @"sound",
@"Increment", @"badge",
// @"Optionally a type was set", @"type",
nil];
;
;
</code></pre>
<p> <img src="/image/61aJq.png" alt="Installation class"/>
我的安装类确实有这个用户指针( friend 对象),逻辑上它应该是通知的接收者。</p>
<p>我错过了什么吗?任何建议都会很棒。感谢您宝贵的时间</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>只要您在 <code>Installation</code> 类中有一个名为 <code>user</code> 类型为 <code>Pointer<My_User></code> 的列,并且您实际上已经填充它,您的代码应该可以工作。</p>
<p>Push Notification 文档中有一节谈到将数据添加到 <code>Installation</code> 类:</p>
<p> <a href="https://parse.com/docs/push_guide#sending-queries/iOS" rel="noreferrer noopener nofollow">https://parse.com/docs/push_guide#sending-queries/iOS</a> </p></p>
<p style="font-size: 20px;">关于ios - 使用 parse 从移动设备向特定用户发送推送通知,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25160595/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25160595/
</a>
</p>
页:
[1]