我试图像这样设置一个按钮属性,
当我添加此代码时,它崩溃甚至不显示main.storyboard中的按钮。
let containerScheme = MDCContainerScheme()
cancelButton.applyOutlinedTheme(withScheme: containerScheme)
最佳答案
从该错误中,您可以看到UIButton
没有名为applyOutlinedThemeWithScheme
的方法,这可能意味着在情节提要或XIB中,您使用的是UIButton而不是MDCButton。
在情节提要或XIB中,转到Identity Inspector,确保将Class
设置为MDCButton
。