gpt4 book ai didi

ios - 无法将类型 '[String]' 的值分配给类型 'String?' (Swift)

转载 作者:行者123 更新时间:2023-11-28 11:06:13 24 4
gpt4 key购买 nike

在用于 ios 开发的 swift (Xcode) 中,我试图将 UILabel 的文本设置为数组的元素。这是一个简单的项目,当你按下一个按钮时:从一个包含 50 个元素的数组中,50 个元素将被随机化,然后选择 3 个,我希望这 3 个显示在 UILabel 上,但我得到了错误我不能将类型“[String]”的值分配给类型“String”? ( swift )。这是我的代码主要代码

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var altLabel: UILabel!
@IBOutlet weak var asianLabel: UILabel!
@IBOutlet weak var bluesLabel: UILabel!
@IBOutlet weak var classicalLabel: UILabel!
@IBOutlet weak var countryLabel: UILabel!
@IBOutlet weak var danceLabel: UILabel!
@IBOutlet weak var edmLabel: UILabel!
@IBOutlet weak var emotionalLabel: UILabel!
@IBOutlet weak var euroLabel: UILabel!
@IBOutlet weak var indieLabel: UILabel!
@IBOutlet weak var inspirationalLabel: UILabel!
@IBOutlet weak var jazzLabel: UILabel!
@IBOutlet weak var latinLabel: UILabel!
@IBOutlet weak var newAgeLabel: UILabel!
@IBOutlet weak var operaLabel: UILabel!
@IBOutlet weak var popLabel: UILabel!
@IBOutlet weak var rbLabel: UILabel!
@IBOutlet weak var reggaeLabel: UILabel!
@IBOutlet weak var rockLabel: UILabel!
@IBOutlet weak var rapLabel: UILabel!

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

@IBAction func altButton(sender: UIButton) {

let altSongs: [String] = ["Spirits by The Strumbellas", "Ride by Twenty One Pilots", "Ophelia by The Lumineers", "Dark Necessities by Red Hot Chili Peppers", "Bored to Death by Blink-182", "HandClap by Fitz And Tantrums", "Walking An A Dream by Empire Of The Sun", "Kiss This by The Struts", "Woman Woman by AWOLNATION", "First by Cold War Kids", "Way Down We Go by Kaleo", "Gone by Jr Jr", "Genghis Khan by Miike Snow", "Stressed Out by Twenty One Pilots", "Adventure Of A Lifetime by Coldplay", "2AM by Bear Hands", "Take It From Me by KONGOS", "Soundcheck by Catfish And The Bottlemen", "Brazil by Declan McKenna", "Destruction by Joywave", "Centuries by Fallout Boy", "Castle by Hasley", "First by Cold war Kids", "Unsteady (Erich Lee Gravity Remix) by X Ambadassadors", "Best Day Of My Life by American Authors", "Hymn For The Weekend by Coldplay", "Seven Nation Army by The White Stripes", "This is Gospel by Panic! At The Disco", "Riptide by Vance Joy", "Uma Thurman by Fallout Boy", "My Song Know What You Did In The Dark (Light Em Up) by Fall Out Boy", "Radioactive by Imagine Dragons", "Car Radio by Twenty One Pilots", "Walking On A Dream by Empire Of The Sun", "Viva La Vide by Coldplay", "Left Hand Free by Alt-J", "Tear in My Heart by Twenty One Pilots", "Death Of A Bachelor by Panic! At The Disco", "Demons by Imagine Dragons", "Emperor's New Clothes by Panic! At The Disco", "I Write Sins Not Tradegies by Panic! At The Disco", "Sail by AWOLNATION", "Twice by Catfish And The Bottlemen", "Colors by Hasley", "Nobody Really Cares If You Don't Go To The Party", "Courtney Barnett", "A Sky Full Of Stars", "On Top Of The World by Imagine Dragons", "Woman Woman by AWOLNATION", "Take Me T Church by Hozier"]

var shuffled = altSongs.shuffle;
shuffled = altSongs.choose(3)
altLabel.text = shuffled //(ending brackets are in place, just not shown here. **Rest of the code is just buttons structured in same format as this one**)

我只是 iOS 开发的初学者

方法代码://(选择)和(随机播放)

import Foundation
import UIKit

extension Array {
var shuffle: [Element] {
var elements = self
for index in indices.dropLast() {
guard
case let swapIndex = Int(arc4random_uniform(UInt32(count - index))) + index
where swapIndex != index else {continue}
swap(&elements[index], &elements[swapIndex])

}
return elements
}
mutating func shuffled() {
for index in indices.dropLast() {
guard
case let swapIndex = Int(arc4random_uniform(UInt32(count - index))) + index
where swapIndex != index
else { continue }
swap(&self[index], &self[swapIndex])
}
}
var chooseOne: Element {
return self[Int(arc4random_uniform(UInt32(count)))]
}
func choose(n: Int) -> [Element] {
return Array(shuffle.prefix(n))
}
}

最佳答案

对于你的错误:“unexpectedly found nil while unwrapping an Optional value”,看看我关于它们的帖子,理解'!'和 '?'对于 Swift 开发至关重要: What are '!' and '?' marks used for in Swift

此外,正如其他答案也提到的那样,您正在返回一个数组值,而不是您应该提供一个 String 值,然后将其分配给您的 label.text 值。为此,您可以尝试以下操作:

altLabel.text = "\(shuffled[0]), \(shuffled[1]), \(shuffled[2])"

关于ios - 无法将类型 '[String]' 的值分配给类型 'String?' (Swift),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37404765/

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