我的应用是基于导航的。 UIBarButtonItem就可以了。
refreshstopButton = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self
action:@selector(refreshTapped)];
我发现当我点击状态栏时,“refreshTapped”被触发(不是由我的大指引起的,也可以通过使用模拟器和鼠标点击来重现)。 Stacktrace显示它来自
-[UIApplication sendAction:to:from:forEvent:];
我不明白为什么。有时我的应用程序崩溃的堆栈跟踪与Crash on iPhone?
非常相似注意: 我也试过UICatalog示例,我看到同样的事情:点击状态栏会触发“Back”UIBarButtonItem动作(使用模拟器)。
使用模拟器一段时间后,我意识到敏感区域比按钮边框大得多。我想也许这就是Cocoa Touch的作用方式。
然而,崩溃问题仍然没有解决。根据堆栈跟踪,看起来它是通过触摸状态栏触发的。
以下是崩溃日志:
0 libobjc.A.dylib 0x32da1cb2 objc_msgSend + 42
1 UIKit 0x324c3a30 -[UIControl(Deprecated) sendAction:toTarget:forEvent:] + 28
2 UIKit 0x324c3990 -[UIControl(Internal) _sendActionsForEventMask:withEvent:] + 352
3 UIKit 0x32563764 -[UIControl mouseUp:] + 376
4 UIKit 0x3254d314 -[UIView(Internal) _mouseUp:] + 32
5 UIKit 0x3254a480 -[UIWindow _handleMouseUp:] + 108
6 UIKit 0x3254a8da -[UIWindow _statusBarMouseUp:] + 122
7 UIKit 0x32680980 -[UIStatusBar touchesEnded:withEvent:] + 320
8 CoreFoundation 0x328d056a -[NSObject(NSObject) performSelector:withObject:withObject:] + 18
9 UIKit 0x32406094 forwardMethod2 + 60
10 UIKit 0x324a04ca -[UIResponder touchesEnded:withEvent:] + 2
11 UIKit 0x32404bee -[UIWindow _sendTouchesForEvent:] + 362
12 UIKit 0x32404568 -[UIWindow sendEvent:] + 256
13 UIKit 0x323ed30c -[UIApplication sendEvent:] + 292
14 UIKit 0x323ecc4c _UIApplicationHandleEvent + 5084
我还尝试按照http://cocoawithlove.com/2009/05/intercepting-status-bar-touches-on.html来捕获状态栏上的事件。但正如其他人所指出的那样,它不再适用于iOS 4.x
答案 0 :(得分:0)
检查&替换此行以避免崩溃问题。
@selector(refreshTapped:)
代替@selector(refreshTapped)
(注意第一个备选方案中的额外:
)