- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试掌握 Parse 并构建一个简单的聊天应用程序。对于我的登录 和注册 代码,我有以下代码段:
PFInstallation *installation = [PFInstallation currentInstallation];
installation[@"user"] = [PFUser currentUser];
[installation saveInBackground];
此代码将 PFInstallation 连接到 PFUser,因此可以通过查询用户名发送推送。
当应用加载时,我首先检查是否已有用户登录:
if ([PFUser currentUser]) {
[self performSegueWithIdentifier:@"showFriends" sender:nil];
}
如果用户已经登录,则加载显示好友 View Controller 。我是否需要在这段代码中重新设置安装以匹配用户?即
if ([PFUser currentUser]) {
PFInstallation *installation = [PFInstallation currentInstallation];
[installation[@"user"] = [PFUser currentUser];
[installation saveInBackground];
[self performSegueWithIdentifier:@"showFriends" sender:nil];
}
还是因为用户已经登录就不需要了?我是否认为安装文件是唯一的并且只创建一次,将设备与推送服务匹配,所以除非我想更新我添加的 PFUser 字段,否则该文件没有任何真正的改变?谢谢
最佳答案
if a user is already logged in the show friends view controller is loaded. Do I need to set the installation again in this code to match the user?
没有。安装和用户类独立行动,但在您的情况下,因为您设置了关系,所以它们也可以一起行动。由于您已经在应用程序 didFinishLaunchingWithOptions:
中设置了它,该设备已使用您提供的 token (设备 token )唯一标识其安装,因此您不必再次调用它。用户 session 是不同的。如果您希望用户登录,您必须在某处提供登录 VC,因为它不会在第一次启动时出现。
Am I right in thinking that the installation file is UNIQUE and only created once, matching the device to the push service so nothing really changes in that file unless I want to update the PFUser field I added? thanks
是的。这是相当准确的。只是不要混淆。 PFUser currentUser
与 PFInstallation currentInstallation
不同任何人都可以登录设备,但该应用程序只能在设备上安装一次,从而使安装独一无二。不是用户。
关于ios - PFInstallation 并添加指向 PFUser 的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28063327/
我正在尝试将 BOOL 值写入 PFInstallation 中的列,但会不停地崩溃: - (IBAction)pushSwitch:(id)sender { NSUserDefaults *push
我不熟悉在 Parse 上使用 PFinstallations,我对它们的工作方式有点困惑。我有一个应用程序可以在用户创建帐户时创建新安装,我将安装的“用户”字段设置为用户 userId,以便稍后可以
我们是否能够强制清除 PFInstallation 数据? 当我想强制注销用户时需要它来重新创建另一个 PFInstallation。 当前问题:新帐户正在使用旧帐户的 PFInstallation,
所以我正在尝试进行自定义通知管理,如果应用程序在后台,一切正常,但如果用户在应用程序中收到通知,则当前安装似乎没有更新以反射(reflect)解析中的内容,我试过获取,但似乎没有更新,只是返回局部变量
我正在尝试掌握 Parse 并构建一个简单的聊天应用程序。对于我的登录 和注册 代码,我有以下代码段: PFInstallation *installation = [PFInstallation c
这可能是个愚蠢的问题,但我想确保更改 PFInstallation.currentInstallation().channels 只会影响当前设备订阅,而不影响全局 channel 。 我基本上想验证
调用 PFInstallation.currentInstallation().fetchInBackgroundWithBlock 时出现以下错误。 2015-07-31 07:12:13.944
我在 application:didFinishLaunchingWithOptions 中保存一个 PFInstallation 对象——我不是询问用户推送权限或任何与 deviceToken 相关
我正在为我的第一个应用程序设置推送通知,但在 Parse 上的 PFInstallation 中向我的 channel 数组添加更多 channel 时遇到问题。到目前为止,我已经添加了 2 个工作正
我正在尝试从 PFInstallation 添加/删除 channel ,但我不断收到相同的错误消息: Terminating app due to uncaught exception 'NS
如果用户最喜欢的食物之一出现在某一天的餐饮菜单上,我会尝试向用户发送推送通知。例如,如果用户将比萨饼、意大利面和土 bean 列为他最喜欢的食物,并且在特定的一天,菜单包含比萨饼,则用户将收到推送通知
我正在尝试将订阅添加到特定 PFUser 的所有 PFInstallations(对于一个人在 iPhone iPad 等上使用相同登录的情况)。我有他们所有使用该应用程序的 Facebook 好友的
当用户登录时,我希望将 PFInstallation“用户名”属性设置为一个字符串,以便用户的 Parse.Installation 对象在 Parse 服务器上具有相同字符串的“用户名”属性。 当我
我正在使用 Parse 和 PFInstallation 根据来自 Parse 的通知增加我的应用程序的角标(Badge)计数。我还需要能够减少该数字——而不仅仅是重置它;我正在寻找与 iOS 消息或
我正在使用下面的代码来获取用户,但我无法获取它。应用程序崩溃了......请帮助我获取所有安装对象列表。 PFQuery *userQuery = [PFQuery queryWithClassNam
我目前无法让 Parse(推送通知服务)在现有的 iOS 应用程序上运行。具体来说,[PFInstallation currentInstallation] 总是返回一个 nil 值。在我的 didF
我想知道用户是否可以读取/写入解析安装类中不属于其设备的行? 我尝试 PFInstallation.query() 和 PFQuery(className: "Installation") 查询安装类
我能否通过用户 ID 获取 PFInstallation 对象,以便我可以订阅该安装的 channel 。 [PFInstallation currentInstallation] 仅提供该设备的安装
我是一名优秀的程序员,十分优秀!