我有一个 board (UIViewController) 实例化 card 对象 (UIViewControllers)。每张卡片上都有一个texfield。为了通过单击非卡片区域(= 板 View )来移除键盘,我需要对 UITapGestureRecognizer 中指定的板的引用。这是我目前的方法。
Board (UIViewController) 初始化卡片对象
-(void) addCardid)touchEvent{
CardViewController *card = [[CardViewController alloc]initItemWithText"..."];
[self addChildViewController:card];
[self.view addSubview:card.view];
}
卡片 (UIViewController) 在初始化时,添加点按手势识别器
- (id)initWithNibNameNSString *)nibNameOrNil bundleNSBundle *)nibBundleOrNil {
...
UITapGestureRecognizer *tapBackground = [[UITapGestureRecognizer alloc]initWithTarget:self actionselector(tapBackground];
[self.parentViewController.view addGestureRecognizer:tapBackground];
...
}
使用 parentViewController 方法的“背景”引用似乎不起作用。为什么?
我如何从卡片中引用返回到董事会以辞职卡片的第一响应者?
尝试将手势代码添加到 Board 而不是 Card(在 viewDidLoad 中)
UITapGestureRecognizer *tapBackground = [[UITapGestureRecognizer alloc]initWithTarget:self actionselector(tapBackground];
[self.view addGestureRecognizer:tapBackground];
关于ios - 在后台点击隐藏键盘 - 手势引用问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14501739/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |