0
A
回答
1
您可以通過AlertViewController
來完成。
這是我的忘記密碼方法,你可以從中獲得幫助。
@IBAction func forgotpwd(sender: AnyObject) {
let alertController = UIAlertController(title: "Forgot Password", message: "Enter Your Email.", preferredStyle: .Alert)
alertController.addTextFieldWithConfigurationHandler { (textField) in
textField.placeholder = "Enter your Email"
textField.keyboardType = .EmailAddress
}
var yesAction = UIAlertAction(title: "YES", style: UIAlertActionStyle.Default) {
UIAlertAction in
//Do you Success button Stuff here
}
var noAction = UIAlertAction(title: "NO", style: UIAlertActionStyle.Cancel) {
UIAlertAction in
//Do you No button Stuff here, like dismissAlertView
}
alertController.addAction(yesAction)
alertController.addAction(noAction)
self.presentViewController(alertController, animated: true) {
}
}
可以將它幫助你,
HTH,享受編碼!
相關問題
- 1. 在iOS7和iOS8中自動旋轉
- 2. iOS7和iOS8上
- 3. iOS7和iOS8 segue.destinationViewController
- 4. 如何使與iOS8兼容的iOS7自定義轉換?
- 5. 在iOS8中自定義UIAlertController
- 6. 如何在Ipad中將SubView自定義爲PopuPView?
- 7. 如何創建自定義NSStepper和NSTabView
- 8. 如何在自定義類中創建自定義IBActions?
- 9. AutoLayout CGAffineTransform iOS7 iOS8
- 10. UIKeyboardWillShowNotification - iOS8 vs iOS7
- 11. 如何創建自定義)
- 12. iOS7中的MFMailComposeViewController自定義
- 13. iOS7自定義UTI
- 14. 如何在iOS8的SNS中創建endPoint?
- 15. 在iOS7上創建GIF工程,在iOS8上打破
- 16. UISearchBar在iOS8中自定義InputView崩潰
- 17. UIViewController在iOS8中的自定義轉換
- 18. AlertView與iOS7和iOS8中的AlertController
- 19. UIScrollview在iOS8中工作,不在iOS7中
- 20. WordPress如何在自定義插件中創建模板和url
- 21. 如何在Xmonad中創建和處理自定義消息?
- 22. 如何在iphone中創建自定義註釋和標註
- 23. 如何在angularjs中爲mouseover和mouseleave創建自定義指令
- 24. 如何在django中創建自定義權限和組模型?
- 25. 如何在c#中創建和使用自定義Awaitable?
- 26. 如何在Cocoa中創建和顯示自定義表單?
- 27. 如何在HTML和PHP中創建自定義驗證碼
- 28. 如何在Grails中創建自定義視圖和佈局
- 29. 如何在iOS8中自定義共享擴展視圖
- 30. iOS自動佈局ios7 vs ios8