我想在此博客中重写一个方法: http://blog.matthewcheok.com/design-teardown-floating-menu-preview/ 但是,我在任何地方都找不到如何将“查找”功能更改为最新的Swift版本的方法,因为“查找”似乎不起作用:
func handleMenuButton(sender: AnyObject) {
let button = sender as UIButton
if let index = find(buttonItems, button) {
delegate?.floatingMenuController?(self, didTapOnButton: button, atIndex: index)
}
}