在ParentView中触发UIContainerView内的UIButton

时间:2015-11-26 19:47:16

标签: ios swift containers

在我的containerView中我放了2个按钮(检查并交叉) 我想从我的ParentViewController访问它们。 容器上还有一个gestureRecognizer。

我的网点和按钮都是可以使用的,但似乎没有任何事情发生。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

现在我自己得到了答案:

按钮的两个出口+之后添加了目标

    checkButton.addTarget(singleModeVC(), action: "checkButton_click:", forControlEvents: UIControlEvents.TouchUpInside)
    closeButton.addTarget(singleModeVC(), action: "closeButton_click:", forControlEvents: UIControlEvents.TouchUpInside)