访问委托存根中的变量

时间:2017-06-21 03:55:03

标签: ios swift delegation

我有一个变量tagToIndex存在于委托的存根中。它看起来像这样:

 func segmentedControl(_ segmentedControl: YSSegmentedControl, willPressItemAt   index: Int) {
    tagToIndex[actionButton.tag] = index
    delegate?.finishPassing(dictionary: tagToIndex)
    print(tagToIndex)

}

func segmentedControl(_ segmentedControl: YSSegmentedControl, didPressItemAt index: Int) {

}

}

目前,这存在于班级MyCell中。我希望能够在另一个名为AnswerViewController的类中访问它。

我尝试使用委托将tagToIndex传递给AnswerViewController,但据我所知,我只会在AnswerViewController中的另一个存根中以tagToIndex结尾。

我的问题是:有没有办法从其他类(tagToIndex)访问AnswerViewController,或者甚至在其已经在(MyCell)的类中?{/ p>

谢谢, 尼克

0 个答案:

没有答案