美文网首页
iOS 中collectionView flowLayout 私

iOS 中collectionView flowLayout 私

作者: jksniper | 来源:发表于2019-08-05 13:42 被阅读0次

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)});
        
    }

相关文章

网友评论

      本文标题:iOS 中collectionView flowLayout 私

      本文链接:https://www.haomeiwen.com/subject/emfmdctx.html