Results 3 comments of zzy

看了下源码 应该在modal/index.js里面加机型判断 ![image](https://user-images.githubusercontent.com/24406515/77981925-aebc5980-733d-11ea-824c-e4b43fcfec7e.png)

在Dialog/index.js 文件里面 flex: operationsLayout === 'column' ? null : 1 选择column 的情况下 flex:null 导致显示有问题 所以换个表达方式 const columnStyle = operationsLayout === 'column' ? { flexDirection: 'row'}:{flex:1, flexDirection: 'row'};

在模型前面加 @objc `@objc class HMMsgDetailItemModel :NSObject, Codable { xxx }` cell里新增一个model的实例 前面也加上@objc ` @objc var model : HMMsgDetailItemModel!{ didSet{ xxx } } ` 最后计算高度时使用 ` let height = mainTableView.cellHeight(for: indexPath,...