cocoapod - 圆形菜单 - Swift - 如何与它互动

时间:2016-12-16 01:58:05

标签: swift animation delegates cocoapods xcode8

我发现这个很棒的cocoapod

但是对于我的生活,我无法弄清楚如何与它互动。我想我和代表混淆了。许多人获得任何函数来返回索引或任何东西。

func circleMenu(_ circleMenu: CircleMenu, buttonWillSelected button: UIButton, atIndex: Int) {
    print("button will selected: \(atIndex)")
  }

实际上并没有返回任何内容。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

我认为您忘记了将委托设置为故事板上的按钮,或者以编程方式设置为“ button.delegate = self”。这将毫无问题地工作

enter image description here enter image description here