美文网首页
UICollectionViewFlowLayout 设置只有一

UICollectionViewFlowLayout 设置只有一

作者: 不太擅长写代码的程序媛 | 来源:发表于2020-07-22 16:19 被阅读0次
        SEL sel = NSSelectorFromString(@"_setRowAlignmentsOptions:");
        if ([_flowLayout respondsToSelector:sel]) {
            ((void(*)(id,SEL,NSDictionary*)) objc_msgSend)(_flowLayout,sel, @{@"UIFlowLayoutCommonRowHorizontalAlignmentKey":@(NSTextAlignmentLeft),@"UIFlowLayoutLastRowHorizontalAlignmentKey" : @(NSTextAlignmentLeft),@"UIFlowLayoutRowVerticalAlignmentKey" : @(NSTextAlignmentCenter)});
        }
    

    参考文章:https://www.jianshu.com/p/de08c2679241

    相关文章

      网友评论

          本文标题:UICollectionViewFlowLayout 设置只有一

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