例えば{ 1,2,3,4,5, }で、添字4でセンタリングして{ 3,4,5,1,2, }とか
添字3でセンタリングして{ 2,3,4,5,1, }みたいなセンタリング。
- (NSArray *)_centering:(NSArray *)array current:(NSInteger)cur {
NSInteger count = array.count;
NSInteger half = (NSInteger)floor((CGFloat)count/2.f);
NSInteger limit = half;
NSRange zeroRange = NSMakeRange(0, 0);
NSRange