iOS Swift – 如何以编程方式为所有按钮指定默认操作

前端之家收集整理的这篇文章主要介绍了iOS Swift – 如何以编程方式为所有按钮指定默认操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发原型阶段的应用程序.某些界面元素没有通过故事板或以编程方式分配给它们的任何操作.

根据UX准则,我想在应用程序中找到这些“非活动”按钮,并在测试期间点击时显示功能不可用”警报.这可以通过扩展UIButton来完成吗?

除非通过界面生成器或以编程方式分配其他操作,否则如何为UIButton分配默认操作以显示警报?

解决方法

那么你想要实现的目标是什么.我已经使用UIViewController扩展并添加了一个闭包作为没有目标的按钮的目标.如果按钮没有动作,则会显示警报.
  1. class ViewController: UIViewController {
  2.  
  3. override func viewDidLoad() {
  4. super.viewDidLoad()
  5. self.checkButtonAction()
  6. }
  7.  
  8. override func didReceiveMemoryWarning() {
  9. super.didReceiveMemoryWarning()
  10. // Dispose of any resources that can be recreated.
  11. }
  12.  
  13. override func viewDidAppear(_ animated: Bool) {
  14. super.viewDidAppear(animated)
  15.  
  16. }
  17. @IBAction func btn_Action(_ sender: UIButton) {
  18.  
  19. }
  20.  
  21. }
  22.  
  23. extension UIViewController{
  24. func checkButtonAction(){
  25. for view in self.view.subviews as [UIView] {
  26. if let btn = view as? UIButton {
  27. if (btn.allTargets.isEmpty){
  28. btn.add(for: .touchUpInside,{
  29. let alert = UIAlertController(title: "Test 3",message:"No selector",preferredStyle: UIAlertControllerStyle.alert)
  30.  
  31. // add an action (button)
  32. alert.addAction(UIAlertAction(title: "OK",style: UIAlertActionStyle.default,handler: nil))
  33.  
  34. // show the alert
  35. self.present(alert,animated: true,completion: nil)
  36. })
  37. }
  38. }
  39. }
  40.  
  41. }
  42. }
  43. class ClosureSleeve {
  44. let closure: ()->()
  45.  
  46. init (_ closure: @escaping ()->()) {
  47. self.closure = closure
  48. }
  49.  
  50. @objc func invoke () {
  51. closure()
  52. }
  53. }
  54.  
  55. extension UIControl {
  56. func add (for controlEvents: UIControlEvents,_ closure: @escaping ()->()) {
  57. let sleeve = ClosureSleeve(closure)
  58. addTarget(sleeve,action: #selector(ClosureSleeve.invoke),for: controlEvents)
  59. objc_setAssociatedObject(self,String(format: "[%d]",arc4random()),sleeve,objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN)
  60. }
  61. }

我测试了它.希望这可以帮助.快乐的编码.

猜你在找的iOS相关文章