Is there any way to Toast message in swift ?
I have tried in objective c but could not find solution in swift.
[self.view makeToast:@\"Account create
if makeToast:duration:position: is defined in objective-c and can be called, then the swift code will be
makeToast:duration:position:
self.view.makeToast("Acount created Successfully", duration: 0.5, position: "bottom")
You may need to use a bridging header to gain access to those method in your swift code though.