当searchDisplayController在ios7上处于活动状态时,工具栏按钮项目无响应

时间:2014-01-09 07:40:55

标签: iphone ios7 xcode5 toolbar uisearchdisplaycontroller

我的应用程序有searchDisplay Controller和一个带有Bar按钮项的工具栏。我的问题是,当我点击搜索按钮时,会显示搜索结果,但我的Bar按钮不响应ios 7上的click事件。但是同样的事情适用于ios 6。

当我点按而不搜索时,栏按钮工作正常。我知道当我的searchDisplay控制器设置为活动时,栏按钮不会被激活。 我无法找到原因,需要解决这个问题。

1 个答案:

答案 0 :(得分:0)

它不起作用,因为您的SearchDisplayController正在处理触摸事件,因此不会将其传递到响应程序链,直到条形视图。

您可以手动传递事件,以便酒吧在需要时响应触摸。

检查出来:What's the trick to pass an event to the next responder in the responder chain?