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

Retrieving a specific value from an array to the custom cell - Swift

我正在研究自定义单元格。 在 Whosebug 社区的大力帮助下,我已经能够将一些代码放在一起。我能够将文本字符串中的数组值提取到自定义单元格 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) { [=11=] == "\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

}

这是我用于 class 和 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 并增加计数器。

两个注意事项:

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

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) { [=11=] == "\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++
      }
    }
  }
}