我有一个if (my_condition_1) ++x;
else if (my_condition_2) --x;
,其中包含一些UIAlertController
,如下所示。
UIAlertActions
当用户点击"添加更多"动作,它应该关闭let alertController = UIAlertController(title: nil, message : nil, preferredStyle: .ActionSheet)
let addMoreAction = UIAlertAction(title: "Add more", style: .Default) { (action) in
// Want to be able to call an input accessory view from here
}
alertController.addAction(addMoreAction)
self.presentViewController(alertController, animated: true, completion: nil)
并打开键盘,键盘顶部附有UIAlertController
。 (就像你在Facebook Messenger等聊天应用中看到的那样)。
如何使用swift实现此目的?