如何以编程方式确保tableView-HeaderView-TextField的光标处于活动状态(即第一个响应者)??
我的表看起来像这样(即使用自定义TextField标头)。到目前为止,光标只通过在文本字段内部单击进入灰色标题字段。但我希望能够以编程方式将光标放在文本域中....
我的自定义tableview-header的代码如下所示:
// drawing a custom Header-View with a TextField on top of the tableView
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let container = UIView(frame: CGRectMake(0, 0, self.view.frame.size.width, 50))
let textField = UITextField(frame: CGRectMake(10, 15, self.view.frame.size.width/2 - 40, 45))
textField.delegate = self
self.txtfield = textField
textField.textColor = UIColor.blackColor()
let placeholder = NSAttributedString(string: "..add player", attributes: [NSForegroundColorAttributeName: UIColor.darkGrayColor()])
textField.attributedPlaceholder = placeholder
textField.backgroundColor = UIColor.lightGrayColor()
container.addSubview(textField)
var headPlusBttn:UIButton = UIButton.buttonWithType(UIButtonType.ContactAdd) as! UIButton
headPlusBttn.center.x = self.view.frame.size.width - 20
headPlusBttn.center.y = 38
headPlusBttn.enabled = true
headPlusBttn.addTarget(self, action: "addTeam:", forControlEvents: UIControlEvents.TouchUpInside)
container.addSubview(headPlusBttn)
return container
}
我的第一个方法是像这样设置headerViewForSection的第一个响应者(参见代码):
// reload entries
func reloadEntries() {
self.tableView.reloadData()
// the following does unfortunately not work !!!!!
self.tableView.headerViewForSection(1)?.becomeFirstResponder()
}
不确定为什么这不起作用。也许,Section-Nr(Int = 1)是错误的。但我尝试了几个节数。没有诅咒它应该在哪里。
任何帮助表示赞赏!
答案 0 :(得分:0)
通常在这种情况下添加延迟会有所帮助。它允许操作系统在视图中完成所需的一切,然后它不会弄乱你同时尝试做的事情。
也许是这样的:
func reloadEntries() {
self.tableView.reloadData()
let delay = (Int64(NSEC_PER_SEC) * 0.1)
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, triggerTime), dispatch_get_main_queue(), { () -> Void in
self.tableView.headerViewForSection(1)?.becomeFirstResponder()
})
}
我没有通过测试来做你想做的事情,所以你可能需要找一个不同的地方来放这个。
另外,您确定要影响第1部分中的视图吗?从你的图像看起来你想要弄乱第0节中的标题。
请务必放入调试器并检查标头是否为零。您的代码暗示这是一个有效的条件。您可以尝试这样编写(至少用于测试):
if let header = self.tableView.headerViewForSection(1) {
header.becomeFirstResponder()
}
else {
print("There is no header.")
}
答案 1 :(得分:0)
尝试 self.tableView.headerViewForSection(1)+。textfield.becomeFirstResponder()