gpt4 book ai didi

ios - 从数组中检索特定值到自定义单元格 - Swift

转载 作者:行者123 更新时间:2023-11-29 01:44:41 26 4
gpt4 key购买 nike

我正在使用自定义单元格。在 stackoverflow 社区的大力帮助下,我已经能够将一些代码放在一起。我能够将文本字符串中的数组值提取到自定义单元格 uilabel 和 uibutton 中,但问题是 - 提取的结果始终是数组中的最后一个对象。

这是代码

func setUpQuestion()
{

// setting variables
var Question: String?
var option1: String?


// using a text string with custom separators

let text = ">>Here is the grocery question\n>>and another one\n--Apples\n-
-Oranges\n[pickApples]pickOranges\n[pickApples2]"

// splitting this string into four different arrays depending on the separator

let lines = split(text) { $0 == "\n" }
for line in lines {
if line.hasPrefix(">>") {
Question = line.substringFromIndex(advance(line.startIndex, 2))
} else if line.hasPrefix("[") {
if let index = line.rangeOfString("]")?.startIndex {
option1 = line.substringWithRange(Range<String.Index>(
start: advance(line.startIndex, 1), end: index))
}
}
}

// creating variables for appending the values - here I'm using a custom class called QuestionMark created in a separate .swift file

var question1 = QuestionMark(Question: Question!, option:option1!)
var question2 = QuestionMark(Question: Question!, option:option1!)

// appending the values into uilabel and uibutton in the custom cell

arrayOfQuestions.append(question1)
arrayOfQuestions.append(question2)

}

// regular tableView protocol functions

func tableView(tableView: UITableView, numberOfRowsInSection
section: Int) ->Int
{
return arrayOfQuestions.count

}

func updateCount(){
if let list = mainTableView.indexPathsForSelectedRows() as? [NSIndexPath] {
rowsCount.text = String(list.count)
}
}
func tableView(tableView: UITableView, cellForRowAtIndexPath
indexPath: NSIndexPath) -> UITableViewCell
{
let cell: CustomCellForTableViewTableViewCell = tableView.dequeueReusableCellWithIdentifier("Cell") as! CustomCellForTableViewTableViewCell

// the SetCell function i'm using here was created in a separate .swift file

let quest = arrayOfQuestions[indexPath.row]
cell.setCell(quest.Questme!, optionone: quest.optionize!)

cell.optionOne.backgroundColor = UIColor.redColor()

return cell

}

这是我用于类和 setCell 函数的附加代码

class QuestionMark
{

var Questme: String?
var optionize: String?

init(Question: String, option: String)
{
self.Questme = Question
self.optionize = option
}

// separate swift file
func setCell(Question: String, optionone: String)
{
self.mainText.text = Question
self.optionOne.setTitle(optionone, forState:UIControlState.Normal)
}

结果在两个单元格中,我都从文本字符串中获取了最后一个对象,它看起来像这样

And another one - PickApples2
And another one - PickApples2

我如何从第一个数组值开始追加单元格,然后向前移动到第二个、第三个、第四个?

任何想法都将不胜感激。

谢谢。

最佳答案

首先,要解析的文本的语法非常复杂;-) ......

其次,始终获取最后一个对象的问题是您在重复循环之后创建问题数组。在那一刻,变量 questionoption 总是包含最后找到的字符串。

这里有一个解决方案:

  • 得到一个问题后,一个新对象 QuestionMark 被创建并附加到数组(没有 optionize 属性)
  • 获取选项后,索引计数器从数组中获取适当的 QuestionMark 对象,设置属性 optionize 并增加计数器。

两个注意事项:

  • 变量名应始终以小写字母开头。甚至 StackOverflow 的语法高亮器也遵循该命名约定。
  • 在我的解决方案中,所有变量都是非可选变量。

class QuestionMark
{

var questme: String
var optionize: String

init(question: String, option: String = "")
{
self.questme = question
self.optionize = option
}

...

var arrayOfQuestions = [QuestionMark]()

func setupQuestion() {

let text = ">>Here is the grocery question\n>>and another one\n--Apples\n--Oranges\n[pickApples]pickOranges\n[pickApples2]"

// splitting this string into four different arrays depending on the separator

var counter = 0

var question = ""
var option = ""

let lines = split(text) { $0 == "\n" }
for line in lines {
if line.hasPrefix(">>") {
question = line.substringFromIndex(advance(line.startIndex, 2))
let questionMark = QuestionMark(question: question)
arrayOfQuestions.append(questionMark)
} else if line.hasPrefix("[") {
if let index = line.rangeOfString("]")?.startIndex {
option = line.substringWithRange(Range<String.Index>(
start: advance(line.startIndex, 1), end: index))
let questionMark = arrayOfQuestions[counter]
questionMark.optionize = option
counter++
}
}
}
}

关于ios - 从数组中检索特定值到自定义单元格 - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32066193/

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