I have an array (NSMutableArray) which contains StudentScoreObj and the object have missions (NSArray).
Like:
missions = @[@34, @43, @54, @23, @54];
need to sort StudentScoreObj of array using first object of missions array.
My code:
@interface StudentScoreObj : NSObject
@property (nonatomic, copy) NSString *teamType;
@property (nonatomic, copy) NSString *teamNumber;
@property (nonatomic, copy) NSString *studentName;
@property (nonatomic, copy) NSString *isParticipated ;
@property (nonatomic, copy) NSString *totalScore;
@property (nonatomic, copy) NSString *avgScore;
@property (nonatomic, copy) NSArray *missions;
@end