gpt4 book ai didi

swift - 如何在多个 ViewController 中使用自定义 UIAlertview?

转载 作者:搜寻专家 更新时间:2023-10-31 19:29:48 29 4
gpt4 key购买 nike

我正在寻找一种从多个 View Controller 调用自定义警报 View 的方法。到目前为止,我已经做了几次不同的尝试,但都没有成功。

  • 我使用界面生成器创建了一个警报 View ,它在一个 View Controller 上运行良好,但在另一个 View Controller 上运行不佳。

  • 然后我尝试以编程方式创建警报 View ,认为它可能与未连接到另一个 View Controller 的 socket 有关。这个也适用于一个 View Controller 而不是另一个。

  • 我制作了一个单独的 swift 文件并制作了一个公共(public)函数,结果相同。使用最后一种方法,我能够在多个 View Controller 上成功地重新使用常规 UIAlertController,但这并不是我想要的。

使用前两种方法,我没有遇到任何编译错误。该应用程序运行良好,然后当我从另一个 View Controller 调用警报时崩溃。

在此先感谢您的任何意见!

编辑:

这个例子在我把它放在另一个 swift 文件中时有效。

public func showSimpleAlert(title: String, message: String?, presentingController: UIViewController) {

if IS_OS_8_OR_LATER() {
let controller = UIAlertController(title: title, message: message, preferredStyle: .Alert)

controller.addAction(UIAlertAction(title: "OK", style: .Cancel, handler: { (action) -> Void in

}))

presentingController.presentViewController(controller, animated: true, completion: nil)
} else {
let alert = UIAlertView(title: title, message: message, delegate: nil, cancelButtonTitle: "OK")
alert.show()
}
}

这是我想要处理的。

public func showAlert(oMsg: String, oTitle:String) {
alertView.backgroundColor = UIColor.whiteColor()
alertView.layer.cornerRadius = 25

alertTitleLabel.text = oTitle as String
alertTitleLabel.font = UIFont(name: "Open-Sans-Bold", size: 20)
alertTitleLabel.textColor = UIColor.blackColor()
alertTitleLabel.textAlignment = .Center
alertTitleLabel.numberOfLines = 1
alertTitleLabel.frame = CGRectMake(25, 60, 264, 112)

alertLabel.text = oMsg as String
alertLabel.font = UIFont(name: "Open-Sans", size: 20)
alertLabel.textColor = UIColor.blackColor()
alertLabel.textAlignment = .Center
alertLabel.numberOfLines = 4
alertLabel.frame = CGRectMake(25, 130, 264, 112)

okButton.setTitle("OK", forState: .Normal)
okButton.setTitleColor(UIColor.blueColor(), forState: .Normal)
okButton.frame = CGRectMake(60, 230, 197, 75)
okButton.addTarget(UIViewController.self, action:#selector(LoginViewController.buttonAction(_:)), forControlEvents: .TouchUpInside)

}

最佳答案

我将给出一个简单的自定义 alertview 的答案,它基本上是一个修改过的 uiviewcontroller。您可以使用 uiviewcontroller 作为 uialertviewcontroller,如下所示。

简单的 AlertView::

enter image description here

AlertVC:

import UIKit

class ErrorAlert: UIViewController {
var titlenote:String = ""
var message:String = ""

@IBOutlet weak var cancelBtn: UIButton!
@IBOutlet weak var messageHolder: UILabel!

@IBOutlet weak var imageHolder: UIImageView!
@IBOutlet weak var titleHolder: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
self.view.backgroundColor = UIColor.black.withAlphaComponent(0.7)
// Do any additional setup after loading the view.
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)

}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
self.messageHolder.text = self.message
self.titleHolder.text = self.titlenote

}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

@IBAction func dismiss(_ sender: Any) {
self.dismiss(animated: true, completion: nil)
}


}

这个 viewcontroller 可以在任何 vc 中重复使用任意次数。

用法示例:

let alertController = self.storyboard?.instantiateViewController(withIdentifier: "erroralert") as! ErrorAlert
alertController.titlenote = "Invalid login"
alertController.message = "Invalid facebook account."
alertController.providesPresentationContextTransitionStyle = true
alertController.definesPresentationContext = true
alertController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
alertController.modalTransitionStyle = UIModalTransitionStyle.crossDissolve
self.present(alertController, animated: true, completion: nil)

我通过设置 alpha 值使 alertviewvc 的背景变为半透明。

实际显示::

enter image description here

您可以通过此方法制作更复杂的警报 View ,但为了可重用性,您应用了一些逻辑,因为按钮操作对于不同的 View Controller 是不同的。示例 - 有时您可以使用 alertview 进行注销提醒或有时用于提交表单。因此在这两种情况下,操作会有所不同,因此为了可重用性,您必须编写额外的逻辑。

另一个 alertView::

enter image description here

希望我的回答对您有所帮助。:)

关于swift - 如何在多个 ViewController 中使用自定义 UIAlertview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37167531/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com