gpt4 book ai didi

ios - 如果将 UIStatusBarForegroundView 用作字符串,Apple 会拒绝该应用程序吗

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:45:38 26 4
gpt4 key购买 nike

在我的应用程序中,我需要在点击状态栏时触发显示一些自定义 View 。我找到了通过子类化 UIApplication 来获取事件的方法。

如果我使用下面的代码,Apple 会阻止我的应用使用私有(private) API 吗?

- (void)sendEvent:(UIEvent *)event{
[[event allTouches] enumerateObjectsUsingBlock:^(UITouch * touch,BOOL * stop){
if (touch.tapCount==1 && touch.phase==UITouchPhaseEnded) {
NSString * touchedViewClassName = NSStringFromClass([touch.view class]);
if ([touchedViewClassName isEqualToString:@"UIStatusBarForegroundView"]) {
[[NSNotificationCenter defaultCenter] postNotificationName:@"StatusBarTapped" object:nil];
}
}
}];
[super sendEvent:event];
}

请指点...

最佳答案

这违反了界面和人类准则

关于ios - 如果将 UIStatusBarForegroundView 用作字符串,Apple 会拒绝该应用程序吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9831780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com