Toast消息显示 - 在编辑文本字段时

时间:2016-06-20 10:22:57

标签: ios toast

我在我的应用程序中实现了toast消息。它工作正常。在编辑页面的同时,我想显示toast消息。可能吗?

谢谢你。

1 个答案:

答案 0 :(得分:0)

首先在控制器中设置textfield委托方法,

然后使用它的方法,

func textFieldShouldBeginEditing(textField: UITextField) -> Bool {

      // display your message here
    return true
}

希望这会对你有所帮助。