gpt4 book ai didi

iOS:跟随系统的核心数据模式

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:07:10 25 4
gpt4 key购买 nike

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

关注

id|userid|followerid

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

每当一个用户关注另一个用户时,就会在关注栏中输入 followerid,在 userid 栏中输入被关注的人。

我现在正尝试使用网络服务从 iOS 应用访问它。

对于 VC,我希望能够列出用户,但是通过在用户的关注者和用户关注的人之间切换 NSPredicate 来实现。这是微不足道的使用 php/sql,但我有时间转换为 CoreData。

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

id|用户名|密码

并复制 mysql 模式,我还有一个 Following entityfid|fuserid|fflowerid

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

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

此时我很困惑。我可以填充用户实体。我还可以用所有关注用户的人和用户正在关注的所有人填充关注者实体。

但是,我不知道要与核心数据通信哪些关注者与哪个用户相关,而且我也不知道如何编写谓词,例如,只拉取应用程序用户的关注者。

如有任何建议,我们将不胜感激。

现在我的 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

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

 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
}

最佳答案

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

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,我会首先创建所有的 Users,在不设置任何关系的情况下,然后通过获取与 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com