我将tableView嵌入到自定义UITextfield的超级视图。 tableview将在视图上显示结果,这意味着我希望能够滚动并在tableView中选择一个单元格。显示了tableview,但是我无法滚动或选择tableView单元格。
这是使用UITexfield呈现tableView的方式。
UITexfield扩展
override init(frame: CGRect) {
super.init(frame: frame)
shared()
commonInit()
if let superview = superview {
setupAutocompleteTable(superview)
}
}
public override func willMove(toSuperview newSuperview: UIView?) {
super.willMove(toSuperview: newSuperview)
commonInit()
setupAutocompleteTable(newSuperview!)
}
lazy var tableView: UITableView = {
let tableView = UITableView()
tableView.translatesAutoresizingMaskIntoConstraints = false
tableView.dataSource = self
tableView.delegate = self
tableView.rowHeight = autoCompleteCellHeight
tableView.isHidden = hidesWhenEmpty ?? true
tableView.layer.borderColor = UIColor.lightGray.cgColor
tableView.layer.borderWidth = 0.5
tableView.layer.zPosition = CGFloat(Float.greatestFiniteMagnitude)
return tableView
}()
fileprivate func setupAutocompleteTable(_ view: UIView) {
autoCompleteTableMargin = 10.0
view.addSubview(tableView)
tableView.topAnchor.constraint(equalTo: view.bottomAnchor, constant: 20).isActive = true
tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true
tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
tableView.centerXAnchor.constraint(equalTo: view.centerXAnchor, constant: 0).isActive = true
tableView.heightAnchor.constraint(equalToConstant: 30).isActive = true
autoCompleteTableView = tableView
autoCompleteTableHeight = 200.0
}
ViewController
lazy var searchField: GooglePlaceSearchField = {
let field = GooglePlaceSearchField()
field.translatesAutoresizingMaskIntoConstraints = true
field.placeholder = "Enter area, city .."
field.setIcon(#imageLiteral(resourceName: "zamasearch"))
field.highLightTypeTextedEnabled = true
return field
}()
view.addSubview(searchBgView)
searchBgView.addSubview(searchField)
有关如何与tableView进行交互的任何帮助
searchField
searchBgView.anchor(top: view.safeAreaLayoutGuide.topAnchor, left: view.leftAnchor, bottom: nil, right: view.rightAnchor, paddingTop: 14, paddingLeft: 20, paddingBottom: 0, paddingRight: 20, width: 0, height: 50, enableInsets: false)
searchField.anchor(top: searchBgView.topAnchor, left: searchBgView.leftAnchor, bottom: searchBgView.bottomAnchor, right: iconContainerView.leftAnchor, paddingTop: 00, paddingLeft: 20, paddingBottom: 0, paddingRight: 0, width: 0, height: 0, enableInsets: false)
答案 0 :(得分:1)
编辑:
在重新阅读了问题并发表了评论之后,tableView被作为同级添加到textField中……尽管同样的问题也适用。 tableView在其超级视图的范围之外。
此示例仍然可以用作在“搜索背景视图”内部处理命中测试的起点(或者,如此处所示,将该表用作该字段的子视图)。
这是一个简单的示例,您应该可以将其用作自定义字段/数据源的基础。
如果注释掉hitTest(...)
函数,您将看到该表,但将无法与其交互。
注意: 这只是示例代码,可以助您一臂之力-不被认为可以投入生产。
class MyCustomTextField: UITextField {
lazy var tableView: UITableView = {
let tableView = UITableView()
tableView.translatesAutoresizingMaskIntoConstraints = false
tableView.dataSource = self
tableView.delegate = self
tableView.layer.borderColor = UIColor.lightGray.cgColor
tableView.layer.borderWidth = 0.5
tableView.layer.zPosition = CGFloat(Float.greatestFiniteMagnitude)
return tableView
}()
let theData = [ "A", "B", "C", "D", "E", "F", "G", "H", "I" ]
// if we comment-out this func, we will NOT be able to interact with the tableView
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
guard isUserInteractionEnabled else { return nil }
guard !isHidden else { return nil }
guard alpha >= 0.01 else { return nil }
let convertedPoint = tableView.convert(point, from: self)
if let v = tableView.hitTest(convertedPoint, with: event) {
return v
}
guard self.point(inside: point, with: event) else { return nil }
return self
}
override init(frame: CGRect) {
super.init(frame: frame)
setupAutocompleteTable(self)
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
public override func willMove(toSuperview newSuperview: UIView?) {
super.willMove(toSuperview: newSuperview)
setupAutocompleteTable(self)
}
fileprivate func setupAutocompleteTable(_ view: UIView) {
if tableView.superview == nil {
view.addSubview(tableView)
tableView.topAnchor.constraint(equalTo: view.bottomAnchor, constant: 20).isActive = true
tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true
tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
tableView.heightAnchor.constraint(equalToConstant: 200).isActive = true
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "TheCell")
}
}
}
extension MyCustomTextField: UITableViewDataSource {
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return theData.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "TheCell", for: indexPath)
cell.textLabel?.text = theData[indexPath.row]
return cell
}
}
extension MyCustomTextField: UITableViewDelegate {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.text = theData[indexPath.row]
}
}
class TextFieldSubViewController: UIViewController {
let customTextField: MyCustomTextField = {
let v = MyCustomTextField()
v.translatesAutoresizingMaskIntoConstraints = false
v.borderStyle = .roundedRect
v.backgroundColor = .yellow // makes it easy to see
return v
}()
override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(customTextField)
NSLayoutConstraint.activate([
customTextField.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 40.0),
customTextField.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 40.0),
customTextField.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -40.0),
])
}
}
结果:
编辑2:
这是另一个快速的示例,使用带有UITextField
,UIButton
和UITableView
作为子视图(彼此同级)的“搜索背景视图”。当文本字段开始/结束编辑时,表视图将显示/隐藏。
class CustomSearchView: UIView {
lazy var theTextField: UITextField = {
let v = UITextField()
v.translatesAutoresizingMaskIntoConstraints = false
v.borderStyle = .roundedRect
v.delegate = self
return v
}()
lazy var tableView: UITableView = {
let tableView = UITableView()
tableView.translatesAutoresizingMaskIntoConstraints = false
tableView.dataSource = self
tableView.delegate = self
tableView.layer.borderColor = UIColor.lightGray.cgColor
tableView.layer.borderWidth = 0.5
tableView.layer.zPosition = CGFloat(Float.greatestFiniteMagnitude)
return tableView
}()
let doneButton: UIButton = {
let v = UIButton()
v.translatesAutoresizingMaskIntoConstraints = false
v.setTitle("Done", for: .normal)
v.setTitleColor(.blue, for: .normal)
return v
}()
let theData = [ "A", "B", "C", "D", "E", "F", "G", "H", "I" ]
override init(frame: CGRect) {
super.init(frame: frame)
commonInit()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}
func commonInit() -> Void {
addSubview(theTextField)
addSubview(doneButton)
addSubview(tableView)
NSLayoutConstraint.activate([
doneButton.topAnchor.constraint(equalTo: topAnchor, constant: 4.0),
doneButton.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -4.0),
doneButton.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -8.0),
theTextField.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 8.0),
theTextField.trailingAnchor.constraint(equalTo: doneButton.leadingAnchor, constant: -8.0),
theTextField.centerYAnchor.constraint(equalTo: doneButton.centerYAnchor),
tableView.topAnchor.constraint(equalTo: theTextField.bottomAnchor, constant: 8.0),
tableView.leadingAnchor.constraint(equalTo: theTextField.leadingAnchor, constant: 0.0),
tableView.trailingAnchor.constraint(equalTo: theTextField.trailingAnchor, constant: 0.0),
tableView.heightAnchor.constraint(equalToConstant: 200.0),
])
doneButton.setContentHuggingPriority(.required, for: .horizontal)
doneButton.addTarget(self, action: #selector(doneTapped), for: .touchUpInside)
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "TheCell")
tableView.isHidden = true
}
@objc func doneTapped() -> Void {
self.endEditing(true)
}
// if we comment-out this func, we will NOT be able to interact with the tableView
// Note: this hitTest func based on source here: http://khanlou.com/2018/09/hacking-hit-tests/
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
guard isUserInteractionEnabled else { return nil }
guard !isHidden else { return nil }
guard alpha >= 0.01 else { return nil }
for subview in subviews.reversed() {
let convertedPoint = subview.convert(point, from: self)
if let candidate = subview.hitTest(convertedPoint, with: event) {
return candidate
}
}
guard self.point(inside: point, with: event) else { return nil }
return self
}
}
extension CustomSearchView: UITextFieldDelegate {
func textFieldDidBeginEditing(_ textField: UITextField) {
tableView.isHidden = false
}
func textFieldDidEndEditing(_ textField: UITextField) {
tableView.isHidden = true
}
}
extension CustomSearchView: UITableViewDataSource {
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return theData.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "TheCell", for: indexPath)
cell.textLabel?.text = theData[indexPath.row]
return cell
}
}
extension CustomSearchView: UITableViewDelegate {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.theTextField.text = theData[indexPath.row]
}
}
class TextFieldSubViewController: UIViewController {
let customSearchView: CustomSearchView = {
let v = CustomSearchView()
v.translatesAutoresizingMaskIntoConstraints = false
v.backgroundColor = .lightGray
return v
}()
override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(customSearchView)
NSLayoutConstraint.activate([
customSearchView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 0.0),
customSearchView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 0.0),
customSearchView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: 0.0),
])
}
}
结果: