我有一个变量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>
谢谢, 尼克