我想在用户提交一些请求时生成并显示通知。 用户单击按钮时显示的通知。 我发现了NSnotificationcenter,但我不知道如何使用它。 任何人都可以发送stackoverflow或其他网站链接。
答案 0 :(得分:0)
如果你想看看UIAlertViewController如何在这里工作是一个示例代码 它会在按钮上显示一个问候世界消息
@IBAction func showMessage() {
let alertController = UIAlertController(title: "welcome to my first app", message: "hELLO WORLD", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "ok", style: UIAlertActionStyle.Default,handler:nil))
self.presentViewController(alertController, animated: true, completion: nil)
}
如果您想在通知中心显示通知。 您可以在iOS 8 here
中找到有关本地通知的优秀教程