我正在与 Parse.com 合作...我的应用程序严重依赖用户之间的关系,并使用这个东西 PFRelation 来创建用户和所选用户之间的关系...
每当当前用户选择用户“A”创建与 PFRelation 的关系时,用户“A”会收到推送通知,通知当前用户已开始关注他。
现在我已经通过一个标签创建了,即使是徽章编号也不应该出现在 CurrentUser 中,而是出现在收到通知的用户“A”中。我所说的徽章不是经典的 Icon 徽章,而是出现在 NavigationBar 上的徽章。
要做到这一切,我应该尝试在特殊类 _USER CurrentUser 中保存一个条目,而不是在 USER "A" 中保存一个条目。你能告诉我我该怎么做吗?我已经有一个数组获取用户的姓名并将它们显示在 tablebiew 中。
例如,为了创建与在 Tableview 上选择的用户的关系,我实现了一个与数组连接的 PFUser
- (void) tableView : ( UITableView * ) tableView didSelectRowAtIndexPath : ( NSIndexPath * ) indexPath {
[ self.TableView deselectRowAtIndexPath : indexPath animated : NO] ;
if (! isFiltered ) {
UITableViewCell * cell = [ self.TableView cellForRowAtIndexPath : indexPath ] ;
cell.accessoryType = UITableViewCellAccessoryCheckmark ;
PFUser * user = [ self.Utenti objectAtIndex : indexPath.row ] ;
PFRelation * Report = [ [ PFUser currentUser ] relationforKey : @ "Relationship "] ;
PFInstallation currentInstallation * = [ PFInstallation currentInstallation ] ;
NSString * RegistraNomeUtente = [ NSString stringWithFormat : @ "% @ " , [user objectForKey : FF_USER_NOMECOGNOME ]] ;
.....