美文网首页
iOS collectionview 只有一个item时如何靠左

iOS collectionview 只有一个item时如何靠左

作者: iOS门三闫 | 来源:发表于2021-09-09 16:03 被阅读0次

SEL sel = NSSelectorFromString(@"_setRowAlignmentsOptions:");

    if([layout respondsToSelector:sel]) {

        ((void(*)(id,SEL,NSDictionary*)) objc_msgSend)(layout,sel, @{@"UIFlowLayoutCommonRowHorizontalAlignmentKey":@(NSTextAlignmentLeft),@"UIFlowLayoutLastRowHorizontalAlignmentKey" : @(NSTextAlignmentLeft),@"UIFlowLayoutRowVerticalAlignmentKey" : @(NSTextAlignmentCenter)});

    }

相关文章

网友评论

      本文标题:iOS collectionview 只有一个item时如何靠左

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