gpt4 book ai didi

objective-c - Touches 始于 UITableViewController

转载 作者:太空狗 更新时间:2023-10-30 03:31:33 26 4
gpt4 key购买 nike

我在我的 UITableViewController 子类中定义这个方法:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesBegan:touches withEvent:event];
NSLog(@"touch began");
}

但它没有被触发。 UIViewController 是 UIResponder 的子类,所以它应该可以工作,对吧?谢谢

最佳答案

如果您试图在 UITableViewController 中关闭键盘,一个不错的解决方案是在 tableView 委托(delegate)的 didSelectRowAtIndexPath 方法中调用 resignFirstResponder。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[myTextField resignFirstResponder];

// Rest of your actual didSelectRowAtIndexPath code ...
}

关于objective-c - Touches 始于 UITableViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6286230/

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