gpt4 book ai didi

ios - 单击导航栏按钮下方的区域时,将触发导航栏按钮单击事件。

转载 作者:可可西里 更新时间:2023-11-01 03:59:29 24 4
gpt4 key购买 nike

enter image description here

我将带有自定义 View 的导航栏作为右栏按钮项。自定义 View 中有两个按钮。但是当我触摸右侧导航栏下方的区域时,它会触发按钮触摸事件。我检查了按钮的框架,并通过更改背景颜色查看所有设置完美。我检查了默认的 iOS 应用程序,如时钟、日历、设置、笔记等,它们都有相同的行为。触摸(默认 iOS 日历应用程序的)屏幕截图中的红色矩形会触发按钮的触摸事件,我的应用程序也发生了同样的情况。

这是代码..

UIView* navigationButtonsView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 100.0f, 44.0f)];

UIButton *p = [UIButton buttonWithType:UIButtonTypeCustom];
[p setImage:[UIImage imageNamed:@"PBtn.png"] forState:UIControlStateNormal];
[p addTarget:self action:@selector(PButtonPushed:) forControlEvents:UIControlEventTouchUpInside];
[p setFrame:CGRectMake(43, 0, 57, 44)];
[navigationButtonsView addSubview:p];

UIButton *o = [UIButton buttonWithType:UIButtonTypeCustom];
[o addTarget:self action:@selector(oButtonPushed:) forControlEvents:UIControlEventTouchUpInside];
[o setFrame:CGRectMake(0, 0, 38, 44)];
[o setImage:[UIImage imageNamed:@"O.png"] forState:UIControlStateNormal];
[navigationButtonsView addSubview:o];

UIBarButtonItem *barItem = [[UIBarButtonItem alloc] initWithCustomView:navigationButtonsView];
[musicVC.navigationItem setRightBarButtonItem: barItem animated:NO];

如何更改导航栏按钮的默认 iOS 行为?因为我在这些按钮下方有一些 UI,因此它的顶部区域没有响应。提前致谢..

最佳答案

这是正常行为 - 两个原因:

  1. iOS 不知道您的手指有多大 - 因此它必须决定触摸的位置。在这种情况下,导航栏会覆盖表格 View 。

  2. 这可能与人机界面指南(抱歉,没有链接。Google 一下)有关,该指南规定最小可触摸区域必须为 44 像素。此行为可能是“UIBarButtonItem”试图符合这些要求。

关于ios - 单击导航栏按钮下方的区域时,将触发导航栏按钮单击事件。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15341402/

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