UICollectionViewFlowLayout 设置只有一

2020-07-22  本文已影响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

上一篇下一篇

猜你喜欢

热点阅读