Results 1 issues of i3

你好,我在使用FlexBoxLayout时发现了一个问题: 如果有两个以上的类都使用了FlexBoxLayout, 由于在fb_setCellContnetViewBlockForIndexPath这个方法中,设置了dispatch_once,导致只有第一个使用的类会调用 [self registerClass:[UITableViewCell class] forCellReuseIdentifier:kCellIdentifier]; 这样会导致后面使用FlexBoxLayout的类产生崩溃 之后的类需要手动加入类似这样的代码可以避免崩溃: [_myTableView registerClass:QMNoteFeedCardCell.class forCellReuseIdentifier:@"fb_kCellIdentifier"]; 希望作者可以对这个问题优化一下,或者在使用说明中提示一下,谢谢