gpt4 book ai didi

ios - 在后台点击时隐藏键盘 - 手势引用问题

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

我有一个 board (UIViewController),它实例化 card 对象 (UIViewControllers)。每张卡片上都有一个texfield。为了通过单击非卡片区域(= 面板 View )移除键盘,我需要引用 UITapGestureRecognizer 中指定的面板。这是我目前的方法。

Board (UIViewController) 初始化卡片对象

-(void) addCard:(id)touchEvent{
CardViewController *card = [[CardViewController alloc]initItemWithText:@"..."];
[self addChildViewController:card];
[self.view addSubview:card.view];
}

Card (UIViewController) 在初始化时,添加 Tap Gesture Recognizer

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
...
UITapGestureRecognizer *tapBackground = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapBackground:)];
[self.parentViewController.view addGestureRecognizer:tapBackground];
...
}

使用 parentViewController 方法的“背景”引用似乎不起作用。为什么?

我如何从卡片中引用回板,以便随时退出卡片的第一响应者?

最佳答案

尝试将手势代码添加到 Board 而不是 Card(在 viewDidLoad 中)

UITapGestureRecognizer *tapBackground = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapBackground:)];
[self.view addGestureRecognizer:tapBackground];

关于ios - 在后台点击时隐藏键盘 - 手势引用问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14501739/

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