这是我定义的一个块,它比较了 2 个 UIView:
typedef NSComparisonResult(^UITagCompareBlock)(UIView*, UIView*);
UITagCompareBlock uiTagCompareBlock = ^NSComparisonResult(UIView* a, UIView* b){
if (a.tag < b.tag) return NSOrderedAscending;
else if (a.tag > b.tag) return NSOrderedDescending;
else return NSOrderedSame;
};
我通过以下方式使用它来对 UIView 数组进行排序:
self.arrayOfViews = [self.arrayOfViews sortedArrayUsingComparator: uiTagCompareBlock];
一切正常,但是如果我尝试将此块和 typedef 定义旋转到它自己的文件中,以便我可以在整个项目中使用相同的块,我会在编译时得到重复的符号错误。我怎样才能在整个项目中使用它?