首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何实现两个垂直按钮在swift 5中删除

在Swift 5中实现两个垂直按钮的删除可以通过以下步骤完成:

  1. 创建两个按钮:可以使用UIButton类来创建按钮,并设置按钮的frame、标题、背景颜色等属性。例如:
代码语言:txt
复制
let button1 = UIButton(frame: CGRect(x: 50, y: 100, width: 100, height: 50))
button1.setTitle("Button 1", for: .normal)
button1.backgroundColor = UIColor.blue

let button2 = UIButton(frame: CGRect(x: 50, y: 200, width: 100, height: 50))
button2.setTitle("Button 2", for: .normal)
button2.backgroundColor = UIColor.red
  1. 添加按钮点击事件:为按钮添加点击事件,以便在点击时执行删除操作。可以使用addTarget方法来为按钮添加点击事件的处理函数。例如:
代码语言:txt
复制
button1.addTarget(self, action: #selector(deleteButton(_:)), for: .touchUpInside)
button2.addTarget(self, action: #selector(deleteButton(_:)), for: .touchUpInside)
  1. 实现删除按钮的处理函数:在处理函数中实现删除按钮的逻辑。可以通过调用removeFromSuperview方法将按钮从父视图中移除。例如:
代码语言:txt
复制
@objc func deleteButton(_ sender: UIButton) {
    sender.removeFromSuperview()
}
  1. 将按钮添加到视图中:将创建的按钮添加到视图中,以便在界面上显示出来。可以使用addSubview方法将按钮添加到父视图中。例如:
代码语言:txt
复制
self.view.addSubview(button1)
self.view.addSubview(button2)

完整的示例代码如下:

代码语言:txt
复制
import UIKit

class ViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        
        let button1 = UIButton(frame: CGRect(x: 50, y: 100, width: 100, height: 50))
        button1.setTitle("Button 1", for: .normal)
        button1.backgroundColor = UIColor.blue
        button1.addTarget(self, action: #selector(deleteButton(_:)), for: .touchUpInside)
        
        let button2 = UIButton(frame: CGRect(x: 50, y: 200, width: 100, height: 50))
        button2.setTitle("Button 2", for: .normal)
        button2.backgroundColor = UIColor.red
        button2.addTarget(self, action: #selector(deleteButton(_:)), for: .touchUpInside)
        
        self.view.addSubview(button1)
        self.view.addSubview(button2)
    }
    
    @objc func deleteButton(_ sender: UIButton) {
        sender.removeFromSuperview()
    }
}

这样,当点击按钮时,对应的按钮将会被从视图中删除。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券