0
카드로 맞춤 콘텐츠보기를 만드는 가장 좋은 방법은 무엇입니까? 지금은 이렇게 : 다음맞춤 콘텐츠 만들기 카드로보기
fileprivate var contentView: View!
fileprivate func prepareContentView() {
contentView = View()
let button = RaisedButton(title: "Raised Button", titleColor: .white)
button.pulseColor = .white
button.backgroundColor = Color.blue.base
contentView.layout(button)
.width(150)
.height(44)
.center()
}
그리고이 카드에 내 콘텐츠보기를 할당 할 때 :
card.contentView = contentView
card.contentViewEdgeInsetsPreset = .wideRectangle3
내용보기가 표시되지 않습니다하지만.
어떻게 해결할 수 있습니까?
감사합니다.