gpt4 book ai didi

ios - 使用 UIPickerView 选定行用数组数据更新 UIButton 标题

转载 作者:行者123 更新时间:2023-11-29 05:30:57 25 4
gpt4 key购买 nike

这个问题以前已经讨论过,但我只是不明白。

我有三个按钮来显示 UIPickerView。

button1.addTarget(self, action: #selector(showPicker), for: .touchUpInside)
button2.addTarget(self, action: #selector(showPicker), for: .touchUpInside)
button3.addTarget(self, action: #selector(showPicker), for: .touchUpInside)

根据单击的按钮,选择器数据 (modelData) 和标签会更新。

@objc func showFilterPicker(sender: UIButton)
if sender.tag == 238 {
modelData = someStringArray1
filterPickerView.reloadAllComponents()
filterPickerView.tag = 2238
} else if sender.tag == 239 {
modelData = someStringArray2
filterPickerView.reloadAllComponents()
filterPickerView.tag = 2239
} else if sender.tag == 240 {
modelData = someStringArray3
filterPickerView.reloadAllComponents()
filterPickerView.tag = 2240
}
}

更新按钮标题

func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
if filterPickerView.tag == 2238 {
button1.setTitle(modelData[row], for: .normal)
} else if filterPickerView.tag == 2239 {
button2.setTitle(modelData[row], for: .normal)
} else if filterPickerView.tag == 2240 {
button3.setTitle(modelData[row], for: .normal)
}
}

但是,这不起作用。

任何建议或更详细的链接答案示例都会有所帮助,谢谢。

--

查看层次结构

override func viewDidLoad() {
view.addSubview(outerView)
outerView.addSubview(scrollView)
scrollView.addSubview(containerView)
containerView.addSubview(button1)
containerView.addSubview(button2)
containerView.addSubview(button3)
view.addSubview(pickerContainerView)
pickerContainerView.addSubview(filterPickerView)
}

最佳答案

这是一个完整的、功能性的示例。没有 IBOutlets 或 IBActions,因此只需为此类分配一个新的 View Controller 即可:

//
// DeanViewController.swift
// TestProj
//
// Created by Don Mag on 8/20/19.
//

import UIKit

class DeanViewController: UIViewController, UIPickerViewDelegate, UIPickerViewDataSource {

let button1: UIButton = {
let b = UIButton()
b.translatesAutoresizingMaskIntoConstraints = false
b.backgroundColor = .red
b.setTitle("Button 1", for: .normal)
return b
}()

let button2: UIButton = {
let b = UIButton()
b.translatesAutoresizingMaskIntoConstraints = false
b.backgroundColor = .red
b.setTitle("Button 2", for: .normal)
return b
}()

let button3: UIButton = {
let b = UIButton()
b.translatesAutoresizingMaskIntoConstraints = false
b.backgroundColor = .red
b.setTitle("Button 3", for: .normal)
return b
}()


let filterPickerView: UIPickerView = {
let v = UIPickerView()
v.translatesAutoresizingMaskIntoConstraints = false
return v
}()

let buttonStackView: UIStackView = {
let v = UIStackView()
v.translatesAutoresizingMaskIntoConstraints = false
v.axis = .vertical
v.spacing = 8
return v
}()

let containerView: UIView = {
let v = UIView()
v.translatesAutoresizingMaskIntoConstraints = false
v.backgroundColor = .cyan
return v
}()

let pickerContainerView: UIView = {
let v = UIView()
v.translatesAutoresizingMaskIntoConstraints = false
v.backgroundColor = .green
return v
}()

let scrollView: UIScrollView = {
let v = UIScrollView()
v.translatesAutoresizingMaskIntoConstraints = false
v.backgroundColor = .blue
return v
}()

let data1 = ["One", "Two", "Three"]
let data2 = ["This", "is", "a", "Test"]
let data3 = ["A", "B", "C", "D", "E"]

var modelData: [String] = [String]()

override func viewDidLoad() {
super.viewDidLoad()

// add the 3 buttons to the stack view
buttonStackView.addArrangedSubview(button1)
buttonStackView.addArrangedSubview(button2)
buttonStackView.addArrangedSubview(button3)

// add the stack view to the container view
containerView.addSubview(buttonStackView)

// add the container view to the scroll view
scrollView.addSubview(containerView)

// add the picker view to its container view
pickerContainerView.addSubview(filterPickerView)

// add the picker container view to the scroll view
scrollView.addSubview(pickerContainerView)

// add the scroll view to the view
view.addSubview(scrollView)

// setup the constraints
NSLayoutConstraint.activate([

buttonStackView.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 20.0),
buttonStackView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -20.0),
buttonStackView.leadingAnchor.constraint(equalTo: containerView.leadingAnchor, constant: 20.0),
buttonStackView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor, constant: -20.0),

filterPickerView.topAnchor.constraint(equalTo: pickerContainerView.topAnchor, constant: 20.0),
filterPickerView.bottomAnchor.constraint(equalTo: pickerContainerView.bottomAnchor, constant: -20.0),
filterPickerView.leadingAnchor.constraint(equalTo: pickerContainerView.leadingAnchor, constant: 20.0),
filterPickerView.trailingAnchor.constraint(equalTo: pickerContainerView.trailingAnchor, constant: -20.0),

containerView.topAnchor.constraint(equalTo: scrollView.topAnchor, constant: 20.0),
containerView.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor, constant: 20.0),
containerView.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor, constant: 0.0),

pickerContainerView.topAnchor.constraint(equalTo: containerView.bottomAnchor, constant: 20.0),
pickerContainerView.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor, constant: 20.0),
pickerContainerView.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor, constant: 0.0),

pickerContainerView.bottomAnchor.constraint(greaterThanOrEqualTo: scrollView.bottomAnchor, constant: 20.0),
pickerContainerView.widthAnchor.constraint(equalTo: scrollView.widthAnchor, constant: -40.0),

scrollView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor),
scrollView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor),
scrollView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor),
scrollView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor),

])

modelData = data1
filterPickerView.tag = 1

filterPickerView.dataSource = self
filterPickerView.delegate = self

button1.addTarget(self, action: #selector(btnTap(_:)), for: .touchUpInside)
button2.addTarget(self, action: #selector(btnTap(_:)), for: .touchUpInside)
button3.addTarget(self, action: #selector(btnTap(_:)), for: .touchUpInside)

}

@objc func btnTap(_ sender: UIButton) -> Void {

if sender == button1 {
modelData = data1
filterPickerView.tag = 1
} else if sender == button2 {
modelData = data2
filterPickerView.tag = 2
} else {
modelData = data3
filterPickerView.tag = 3
}

filterPickerView.reloadAllComponents()

}

func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
var btn: UIButton?
if pickerView.tag == 1 {
btn = button1
} else if pickerView.tag == 2 {
btn = button2
} else {
btn = button3
}
btn?.setTitle(modelData[row], for: .normal)
}

func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
return modelData[row]
}

func numberOfComponents(in pickerView: UIPickerView) -> Int {
return 1
}

func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
return modelData.count
}

}

结果:

enter image description here

蓝色是 ScrollView 的背景色;绿色是选择器容器 View 的背景颜色青色是按钮容器 View 的背景颜色(按钮也嵌入在堆栈 View 中)

点击每个按钮会更改选择器中的数据,选择选择器中的一行会更改关联按钮的标题。

关于ios - 使用 UIPickerView 选定行用数组数据更新 UIButton 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57577923/

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