我试图找到一种很好的方法来按人员在特定公司中对人员进行排序。棘手的是,一个人可以在不同的公司中扮演一个或多个角色。
目前,我有一个“ Person”对象数组,每个对象都有一个与之关联的“ Roles”对象NSSet。
与此类似:
Person
-personId
-personName (NSString)
-personRoles (NSSet)
Role
-roleId (NSNumber)
-roleWeight (NSNumber)
-roleName (NSString)
-companyId (NSNumber)
我需要一些能够解决类似问题的代码:
按Role.roleWeight对人员数组进行排序,其中Role.companyId = X
我一直在看排序描述符,但是它们似乎不足以解决挑战。欢迎任何建议。
最佳答案
您将要看看这个
How to sort an NSMutableArray with custom objects in it?
基本思想是,给定任何两个Person对象,您必须说一下它们如何进行比较。是少一点,多一点还是相同?
- (NSComparisonResult)compare:(id)otherObject {
// get the role for self
// get the role for other object
// compare their weights
// return the right result
}
要传递公司ID,我想您需要sortUsingFunction:context:,具有这样的功能
static int comparePersonsUsingCompanyID(id p1, id p2, void *context)
{
// cast context to a company id
// get the role for p1
// get the role for p2
// compare their weights
// return the right result
}
关于iphone - 按人员在公司中的角色对人员进行分类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3302430/