我想知道如何将目标设置为我的选择器。我想打这个电话>>
sortedArray = [views sortedArrayUsingSelector:@selector(compareWithUnit:)];
问题是我的compareWithUnit
功能在LogUnit
课堂上。我应该如何告诉编译器在类中寻找选择器LogUnit
?
views
数组仅包含LogUnit
(UIViewControllers)对象,我想views
按结果对数组进行排序[LogUnit dayTime]
。
- (NSComparisonResult) compareWithUnit:(LogUnit*) unit;
{
return [[self dayTime] compare:[unit dayTime]];
}