文章出處
文章列表
https://www.zybuluo.com/keenleung/note/339982
-
注意點:
- 無法從控制器中獲取狀態欄
- 狀態欄是屬于一整個應用程序的,需要在 AppDelegate監聽其狀態
-
做法:
/** * 可以在這個AppDelegate方法中監聽到狀態欄的點擊 */ - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { // 防止事件的傳遞過程中, 某些控制器的點擊事件傳遞到 AppDelegate 中 if ([touches.anyObject locationInView:nil].y > 20) return; NSLog(@"點擊了狀態欄") }
文章列表
全站熱搜