如何在 ios 8 和 ios 7 中创建自定义弹出视图?

Posted

技术标签:

【中文标题】如何在 ios 8 和 ios 7 中创建自定义弹出视图?【英文标题】:How to Create Custom PopUpView in ios8 & ios7? 【发布时间】:2015-04-18 12:48:26 【问题描述】:

我尝试在视图中创建子视图,但视图是全屏显示视图

那么任何人都可以指导我是否可以将自定义子视图作为 PopupView?

【问题讨论】:

【参考方案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,享受编码!

【讨论】:

以上是关于如何在 ios 8 和 ios 7 中创建自定义弹出视图?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Mapbox iOS SDK 3.0 版中创建自定义图像标记?

iOS - 如何在没有第三方框架的情况下在 Swift 中创建自定义动画横幅

在 iOS 中创建自定义框架

如何在 Flutter 中创建自定义下拉列表?

如何在 Swift Combine 中创建自定义链?

如何在 C# 中创建自定义登录 Windows 屏幕?