iOS 中collectionView flowLayout 私

2019-08-05  本文已影响0人  jksniper

iOS 中collectionView flowLayout 私有公共属性。
左中右对齐
来源:https://www.jianshu.com/p/de08c2679241

SEL sel = NSSelectorFromString(@"_setRowAlignmentsOptions:");
    if ([self.colView.collectionViewLayout respondsToSelector:sel]) {
        ((void(*)(id,SEL,NSDictionary*))objc_msgSend)(self.colView.collectionViewLayout,sel,
                                                      @{@"UIFlowLayoutCommonRowHorizontalAlignmentKey":@(NSTextAlignmentLeft),
                                                        @"UIFlowLayoutLastRowHorizontalAlignmentKey" : @(NSTextAlignmentLeft),
                                                        @"UIFlowLayoutRowVerticalAlignmentKey" : @(NSTextAlignmentCenter)});
        
    }
上一篇 下一篇

猜你喜欢

热点阅读