标签: ios toast
我在我的应用程序中实现了toast消息。它工作正常。在编辑页面的同时,我想显示toast消息。可能吗?
谢谢你。
答案 0 :(得分:0)
首先在控制器中设置textfield委托方法,
然后使用它的方法,
func textFieldShouldBeginEditing(textField: UITextField) -> Bool { // display your message here return true }
希望这会对你有所帮助。