- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
UIAlertViewController 显示了我所有的文本,但点击后不会切换到另一个 View 。这是代码:
let alertController = UIAlertController(title: "Risposta Esatta", message:"", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "Avanti", style:UIAlertActionStyle.Default,handler: {(UIAlertAction) in
let secondViewController:SecondViewController = SecondViewController()
self.presentViewController(secondViewController, animated: true, completion: nil)
}))
最佳答案
这对我有用:
@IBAction func choiceBtn(sender: UIButton) {
let alertController = UIAlertController(title: "Hello!", message: "This is Alert sample.", preferredStyle: .Alert)
let otherAction = UIAlertAction(title: "OK", style: .Default) {
action in println("pushed OK!")
}
let cancelAction = UIAlertAction(title: "CANCEL", style: .Cancel) {
action in self.performSegueWithIdentifier("VC2", sender: self)
}
alertController.addAction(otherAction)
alertController.addAction(cancelAction)
presentViewController(alertController, animated: true, completion: nil)
}
我创建了一个从 VC1 到 VC2 的模态呈现转场,并将标识符命名为 VC2。我从此处的 GitHub UIAlertController 示例改编的这段代码:
https://github.com/eversense/Swift-UIAlertController-Example
没有到另一个 ViewController 的 segue,所以我添加了它来向您展示。
关于uiview - 如何更改 View 单击 UIAlertViewController 中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26431385/
I am new to swift, i want to dismiss the alert which is present on screen when the new alert comes.
我有一个 UIAlertViewController 需要一段时间才能呈现,一段时间后大约需要一秒钟......代码如下。 PFUser.logInWithUsernameInBackground(u
我想通过点击 UIAlertViewController 外部(点击黑色屏幕空间)来关闭我的 UIAlertViewController。我试过这个: self.presentViewControll
我有 UITable 来显示不同的动物。当您在表格中选择一个单元格时,将推送一个带有大 UIImage 的新 View Controller 。目前,当您放大图像时,会触发 UIAlertView,询
我想重现 UIAlertController 的功能,因为该类不是很可定制。所以这就是我所做的: 创建一个只有两个按钮 Yes 和 No 的 DeleteDeckViewController,带有回调
由于 UIAlertView 和 UIActionsheet 已从 iOS 8 中弃用。因此建议不要同时使用这两个类。使用旧的操作表方法我可以添加在 for 循环的帮助下动态选择标签。 UIActio
我今天使用的是 xcode 7.2,我注意到模拟器中有非常奇怪的行为。每当我打开 UIAlertViewController 和 ActionSheet 或 default 类型时 Simulator
我正在使用代码(没有 Storyboard)开发 ViewController。我正在尝试添加和 AlertController 我已经在 .m 中声明了属性 @property (nonatomic
我正在使用 google 登录我的 swift 应用程序。当用户点击登录时,API 会给出此 UIAlert。有什么办法可以改变这个色调的颜色吗? IE。 “取消”和“继续”? 我什至尝试使用下面的
我正在使用这个 swift 代码从 UIViewController 显示一个警告对话框 import UIKit class TestViewController: UIViewController
I have implemented textfield in UIAlertViewController but I want implement delegate methods to that
我是 swift 的新手,我有一个 UIAlertViewController,我想向它添加一个文本字段并从中获取数据。例如获取文本字段中的文本。 最佳答案 向警报 Controller 添加一个文本
我正在尝试制作一个功能,这样当您按下一个按钮时,您将打开餐厅的网站并且它运行良好,但有些餐厅没有网站。 var OnlineMenuLinks = ["https://static.wixstatic
当用户按住 UIAlertController 行时,它在 iPad 上自然会变成灰色,但我想把它变成另一种颜色。我该怎么做? let alert = UIAlertController(title:
我正在通过以下代码创建一个带有操作的警报 View Controller var alertView = UIAlertController(title: title, message: messag
我可以毫无问题地向 UIAlertController 添加文本字段,但我发现这些文本字段很丑陋。有谁知道如何使它们更具吸引力? 我添加文本字段的代码: let pincodeAlert:UIAler
我想让 UIAlertAction 不可点击。基本上,我有一个 UIAlertView,它会在我尝试下载某些内容时弹出。下载完成后,我希望 UIAlertView 的操作 从不可点击变为可点击。当它变
stackoverflow上也有类似的问题How to add UITableView in a UIAlertView in swift和 How to add a UITableView insi
我希望在注册后弹出警报 Controller ,然后进入 loginFirstViewController 但这不会发生,为什么?它只会转到 loginfirstviewcontroller 而不是弹
在我的项目中,我设置了一个 UITableView,它的单元格绑定(bind)到一个 segue,将用户带到另一个 ViewController,其中单元格的数据得到详细显示。但是,并非所有单元格都应
我是一名优秀的程序员,十分优秀!