1

I'm trying to implement material.io's snackbar for IOS,

I already install the it with cocoapods and I already imported it in my class by

import MaterialComponents.MaterialSnackbar

Then I run it and it's all good.

But after I implement it, it shows an error saying dyld: Symbol not found: _OBJC_CLASS_$_MDCSnackbarManager

I implement it by

let message = MDCSnackbarMessage()
message.text = res.message
MDCSnackbarManager.show(message)
Dylan
  • 1,121
  • 1
  • 13
  • 28

1 Answers1

1

make sure to update to a newer version of material components by using the command

pod update
Bhhavya Patel
  • 60
  • 1
  • 8