我试图像这样设置一个按钮属性,
当我添加此代码时,它崩溃甚至不显示main.storyboard中的按钮。



 let containerScheme = MDCContainerScheme()
        cancelButton.applyOutlinedTheme(withScheme: containerScheme)





ios - MDC因“NSInvalidArgumentException”而崩溃,原因:“-[UIButton applyOutlinedThemeWithScheme:]:无法识别的选择器已发送到实例-LMLPHP

最佳答案

从该错误中,您可以看到UIButton没有名为applyOutlinedThemeWithScheme的方法,这可能意味着在情节提要或XIB中,您使用的是UIButton而不是MDCButton。

在情节提要或XIB中,转到Identity Inspector,确保将Class设置为MDCButton

08-05 21:57