UICollectionView的默認(rèn)排列順序是從左到右,但是有時(shí)候我們的需求可能要求要從右到左排列。這個(gè)時(shí)候我們可以重寫一個(gè)蘋果的方法-(UIUserInterfaceLayoutDirection)effectiveUserInterfaceLayoutDirection改變排序方向
-(UIUserInterfaceLayoutDirection)effectiveUserInterfaceLayoutDirection
{
? ? return UIUserInterfaceLayoutDirectionRightToLeft;
}