UIButton中addTarget和addAction有什么区别

addTarget(_:action:for:)addAction(_:for:) 都是用来给 UIButton 添加事件监听的方法,但是它们的用法略有不同。

  1. addTarget(_:action:for:):这是 UIKit 中的方法,通过调用 addTarget 方法可以将一个目标对象(通常是按钮的拥有者,比如视图控制器)与一个指定的动作(action)关联起来,当按钮触发特定事件时(如点击事件),目标对象就会执行指定的动作。这种方式常用于 Objective-C 代码中,可以实现按钮的点击事件处理。

  2. addAction(_:for:):这是在iOS14中新增的Swift 中的方法,通过调用 addAction 方法可以直接将一个闭包作为按钮的事件处理程序(handler)关联到按钮上。这种方式更加简洁和直观,特别适用于 Swift 代码中,可以方便地定义按钮的事件处理逻辑。

下面是使用这两种方法的示例代码:

Swift 复制代码
import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let button1 = UIButton(type: .system)
        button1.frame = CGRect(x: 50, y: 100, width: 200, height: 50)
        button1.setTitle("Button 1", for: .normal)
        
        // 使用 addTarget 方法添加事件监听
        button1.addTarget(self, action: #selector(button1Tapped), for: .touchUpInside)
        
        view.addSubview(button1)

        let button2 = UIButton(type: .system)
        button2.frame = CGRect(x: 50, y: 200, width: 200, height: 50)
        button2.setTitle("Button 2", for: .normal)
        
        // 使用 addAction 方法添加事件监听
        button2.addAction(UIAction(handler: { _ in
            print("Button 2 tapped")
        }), for: .touchUpInside)
        
        view.addSubview(button2)
    }
    
    @objc func button1Tapped() {
        print("Button 1 tapped")
    }
}

在这个示例中,我们创建了两个按钮,分别使用 addTarget 方法和 addAction 方法添加了点击事件的监听。按钮1使用 addTarget 方法将按钮点击事件与 ViewController 中的 button1Tapped 方法关联起来,按钮2使用 addAction 方法直接将一个闭包作为按钮点击事件的处理程序。

相关推荐
chaosama33 分钟前
禁止uni小程序ios端上下拉伸(橡皮筋效果)
ios·小程序
Zender Han1 小时前
Flutter自定义矩形进度条实现详解
android·flutter·ios
S0linteeH1 小时前
iOS 18.2 六大新功能外媒實測|ChatGPT進化版SIRI、自製Genmoji
ios
DisonTangor19 小时前
苹果发布iOS 18.2首个公测版:Siri接入ChatGPT、iPhone 16拍照按钮有用了
ios·chatgpt·iphone
- 羊羊不超越 -19 小时前
App渠道来源追踪方案全面分析(iOS/Android/鸿蒙)
android·ios·harmonyos
2401_865854881 天前
iOS应用想要下载到手机上只能苹果签名吗?
后端·ios·iphone
HackerTom2 天前
iOS用rime且导入自制输入方案
ios·iphone·rime
良技漫谈2 天前
Rust移动开发:Rust在iOS端集成使用介绍
后端·程序人生·ios·rust·objective-c·swift
2401_852403552 天前
高效管理iPhone存储:苹果手机怎么删除相似照片
ios·智能手机·iphone
星际码仔3 天前
【动画图解】是怎样的方法,能被称作是 Flutter Widget 系统的核心?
android·flutter·ios