UITabBarController 对触摸无响应

发布于 2024-10-10 03:20:30 字数 574 浏览 1 评论 0原文

因此,我的应用程序中有这样的视图层次结构:

UIWindow
UIViewController
UITabBarController -> 4 UINavigationController

我知道 UITabBarController 被设计为应用程序中的最顶层视图,但是在我的情况下这是不可能的。然而,我遇到的问题是,大约 20 个较低像素无法响应触摸,因此 UITabBarController 无法正确触发选项卡更改。这发生在实际设备(iPad 和 iPhone 3G)上。

我的问题是,是否有任何明显的原因导致这种情况发生?我将像这样的 UITabBarController 作为子视图添加到我的 UIViewController 视图中:

- (void)viewDidLoad 
{
    [super viewDidLoad];
    [self.view addSubview:controller.view]; // Controller is the UITabBarController
}

我没有设置 UITabBarController 的委托。

So, I have this view hierarchy in my app:

UIWindow
UIViewController
UITabBarController -> 4 UINavigationController

I know that a UITabBarController is designed to be the topmost view in an app, however this isn't possible in my case. However, the problem that I have is that ~20 of the lower pixels aren't responsive for touches so that the UITabBarController doesn't trigger the tab changes correctly. This happens on an actual device (iPad and iPhone 3G).

My question is, are there any obvious reasons why this could happen? I add the UITabBarController like this as subview to my UIViewController view:

- (void)viewDidLoad 
{
    [super viewDidLoad];
    [self.view addSubview:controller.view]; // Controller is the UITabBarController
}

I didn't set the UITabBarController's delegate.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹梦 2024-10-17 03:20:30

UITabBarController 永远不应该嵌入到 UIViewController 中,因为当它从 UIViewController 继承时,它已经是一个;只是有额外的天赋。当前根 UIViewController 正在拦截所有触摸事件。

使 UITabBarController 的视图成为应用程序委托中 UIWindow 的子视图。

UITabBarController should never be embedded in a UIViewController because, as it descends from UIViewController, it already is one; just with extra flair. Currently the root UIViewController is intercepting all of your touch events.

Make the UITabBarController's view the subview of your UIWindow in the app delegate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文