gpt4 book ai didi

ios - 如何从扩展访问变量并在 Swift 的 View Controller 中使用它

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

该值已正确打印到标签,但我想显示 bubbleSort() 中的每次迭代。因此,我在每次迭代时都给出了一些打印命令。但是,它仅打印在控制台上。我想将每次迭代打印到 Label2 上。

我最终在从 View Controller 中的扩展访问变量时遇到了麻烦。

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var userArr: UITextField!
@IBOutlet weak var Label: UILabel!
@IBOutlet weak var Label2: UILabel!

@IBAction func sortBtn(_ sender: Any) {
let strings = userArr.text

let digs = strings?.digits

var arrayIntegers = strings?.components(separatedBy: " ").flatMap { Int($0) }

let t = arrayIntegers!.bubbleSort()

Label.text = "\(t)"

Label2.text = "" //This is where each iteration should be.
// "\(bubbleSort.a)" + "\(b)" + "\(c)" tried something similar to that
}

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
}

extension Array where Element: Comparable {
func bubbleSort (by areInIncreasingOrder: ((Element, Element) -> Bool) = (<)) ->[Element] {
var data = self
let a = print(data) //prints first iteration

for i in 0..<(data.count-1){
for j in 0..<(data.count-i-1) where areInIncreasingOrder(data[j+1], data[j]){
let b = print(data) // print iteration n+1 to n-1
data.swapAt(j, j+1)

}
}

var c = print(data) // print last iteration

return data
}
}

最佳答案

您尝试了joined方法?

像这样:

Label2.text = bubbleSort.joined(separator: "\n")

关于ios - 如何从扩展访问变量并在 Swift 的 View Controller 中使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57384936/

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