UICollectionView的默认排列顺序是从左到右,但是有时候我们的需求可能要求要从右到左排列。这个时候我们可以重写一个苹果的方法-(UIUserInterfaceLayoutDirection)effectiveUserInterfaceLayoutDirection改变排序方向
-(UIUserInterfaceLayoutDirection)effectiveUserInterfaceLayoutDirection
{
return UIUserInterfaceLayoutDirectionRightToLeft;
}