• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iOS:关注系统的核心数据架构

[复制链接]
菜鸟教程小白 发表于 2022-12-13 15:49:55 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在 mysql 和 php 中有一个跟踪系统,它只使用一个表,如下所示:

关注

id|userid|followerid

(还有一个users表:id|username|pass)

每当用户关注另一个用户时,都会在关注列中使用 followerid 并在 userid 列中使用被关注的人进行条目。

我现在正尝试使用 Web 服务从 iOS 应用程序访问它。

对于 VC,我希望能够列出用户,但通过链接 NSPredicate 在用户的关注者和用户关注的人之间切换。这对于使用 php/sql 来说是微不足道的,但在转换为 CoreData 时需要花费一些时间。

现在我在核心数据中有用户实体,具有以下属性:

id|用户名|密码

并复制 mysql 架构,我还有一个以下实体 fid|fuserid|flowerid

反过来,我为用户与关注者创建了一对多关系,并为用户与关注者创建了反向一对多关系,因为给定用户(例如应用程序的用户)可以有很多关注者,也可以关注很多人。

Web 服务当前设置为向用户和每个用户提供一组关注者 ID,如下所示 编号:1 名称:鲍勃 追随者:2,3,4

此时我被难住了。我可以填充用户实体。我还可以用所有关注用户的人和用户关注的人填充关注者实体。

但是,我不知道要向 Core data 传达哪些关注者与哪个用户相关,而且我也不知道如何编写谓词,例如,仅拉取应用程序用户的关注者。

希望有任何建议。

现在我的 NSManagedObjects 如下所示:

   //User.h
    #import "Following.h"
    @class Following;

    @interface User : NSManagedObject
    //in user entity
    @property (nonatomic, retain) NSNumber * uid;
    @property (nonatomic, retain) NSString * uname;
    @property (nonatomic, retain) NSString *upass;

    //this is relationship
    @property (nonatomic, retain) Following *following;

    @end

//and Following.h   
     #import "User.h"
    @class User;

    @interface Following : NSManagedObject

    @property (nonatomic, retain) NSNumber * fid;
    @property (nonatomic, retain) NSNumber * fuserid;
    @property (nonatomic, retain) NSNumber * followerid;
    //this is relationship
    @property (nonatomic) User *user;

    @end

从网络服务导入和保存用户后,我尝试在关注实体中保存一些关于关注者的信息,但不确定我在这里做什么......

 NSSet*followerids = importUser.followerids;
                    NSInteger *folnum =[followerids count];
                    if (folnum>0) {
                    for (id item in followerids) {
                        Following *newFollowing = [NSEntityDescription insertNewObjectForEntityForName"Following" inManagedObjectContext:self.managedObjectContext];
                        newFollowing.fuserid = useridnum;
                         NSNumber *itemnum = [NSNumber numberWithInt:[item intValue]];
                        newFollowing.followerid = itemnum;
                        newFollowing.user = record;  //where record is a user just created     
                    }



Best Answer-推荐答案


你实际上有一个多对多的关系(每个 User 可以跟随许多其他 Users,并且可以跟随许多 Users)。您可以通过 two 对多关系,followedByUsersusersBeingFollowed 直接在 CoreData 中对此进行建模,而无需创建额外的实体,其中一个是另一个的倒数。生成的模型如下所示:

DataModel

您的 User 类定义将如下所示:

@interface User : NSManagedObject
//in user entity
@property (nonatomic, retain) NSNumber *uid;
@property (nonatomic, retain) NSString *uname;
@property (nonatomic, retain) NSString *upass;

//this is relationship
@property (nonatomic, retain) NSSet *followedByUsers;
@property (nonatomic, retain) NSSet *usersBeingFollowed;

@end

如果您的 Web 服务提供 useridname 和一组 followerids,我将首先创建所有 用户,不设置任何关系,然后通过获取followerids对应的User记录来循环建立关系:

NSPredicate *userPredicate = [NSPredicate predicateWithFormat"uid == %@",importUser.userid];
NSFetchRequest *fetchUser = [NSFetchRequest fetchRequestWithEntityName"User"];
fetchUser.predicate = userPredicate;
NSArray *results = [context executeFetchRequest:fetchUser error:nil];
User *record = results[0];
NSSet *followerids = importUser.followerids;
NSInteger folnum =[followerids count];
if (folnum>0) {
    NSPredicate *predicate = [NSPredicate predicateWithFormat"uid IN %@",followerids];
    NSFetchRequest *fetch = [NSFetchRequest fetchRequestWithEntityName"User"];
    fetch.predicate = predicate;
    NSArray *resultsArray = [context executeFetchRequest:fetch error:nil];
    if ([results count] > 0) {
        NSSet *followers = [NSSet setWithArray:resultsArray];
        record.followedByUsers = followers;
    }
}

(为简单起见,我省略了通常的错误检查。)建立关系后,您可以确定哪些用户关注给定用户:

givenUser.followedByUsers

或者,如果您想使用谓词(例如,对于 fetchedResultsController),请使用:

NSPredicate *predicate = [NSPredicate predicateWithFormat"usersBeingFollowed CONTAINS %@",givenUser];

相反,要获取 givenUser 正在关注的用户,请使用

givenUser.usersBeingFollowed

NSPredicate *predicate = [NSPredicate predicateWithFormat"followedByUsers CONTAINS %@",givenUser];

关于iOS:关注系统的核心数据架构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36438703/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap