'UIView' 类型的值没有成员 'layout'
Value of type 'UIView' has no member 'layout'
private func prepareContainerView() {
containerView = UIView()
view.layout(containerView).edges(top: 100, left: 20, right: 20)
//The above line is showing error
}
这是来自 CosmicMind 的示例项目 Material。我似乎无法 运行 该项目,因为错误一直存在。请帮忙
答案是至少使用1.42.9版本:) 祝一切顺利!
private func prepareContainerView() {
containerView = UIView()
view.layout(containerView).edges(top: 100, left: 20, right: 20)
//The above line is showing error
}
这是来自 CosmicMind 的示例项目 Material。我似乎无法 运行 该项目,因为错误一直存在。请帮忙
答案是至少使用1.42.9版本:) 祝一切顺利!