web-dev-qa-db-ja.com

セルに基づいてTableViewの高さを増やす

UITableViewコンテンツサイズに基づいてUITableViewCell高さを増やす必要があります。カスタムGoogleオートコンプリートを使用しています。 UITextFieldがあります。そのUITextFieldに文字を入力すると、shouldChangeCharactersIn範囲デリゲートメソッドが呼び出されます。

そのメソッド内で、動的リクエストをGoogle AutoComplete APIに送信して、予測結果を取得します。

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {

    if tableView.numberOfRows(inSection: 0) > 0
    {

    let newLength = (textField.text?.characters.count)! + string.characters.count - range.length
    let enteredString = (textField.text! as NSString).replacingCharacters(in: range, with:string)

    if newLength == 0 {
        tableView.isHidden = true
    }

    if newLength > 0
    {
        address.removeAll()
        self.tableView.isHidden = false

        GetMethod("https://maps.googleapis.com/maps/api/place/autocomplete/json?input=\(enteredString)&key=MYAPIKEY", completion: { (resultDict) in

            let resultArray = resultDict.object(forKey: "predictions")! as! NSArray

            print(resultArray.count)

            for temp in resultArray

            {
                 let newtemp = temp as! NSDictionary
                 let tempAdd = newtemp.value(forKey:"description") as! String
                let placeId = newtemp.value(forKey:"place_id") as! String
                var dict = [String : AnyObject]()
                dict["address"] = tempAdd as AnyObject?
                dict["latlong"] = placeId as AnyObject?
                self.address.append(dict as AnyObject)
                 print(newtemp.value(forKey:"description"))
                 print(self.address.count)
                self.tableView.reloadData()

            }

        })
      }
    return true
}

すべてのアドレスをAddress配列に動的に格納した後、その着信アドレスの内容に基づいてUITableViewの高さを増やす必要があります。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cellIdentifier = "TableViewCell"
    var cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier)
    if cell == nil
    {
    cell = UITableViewCell(style: .default, reuseIdentifier: cellIdentifier)
    }

    let addresstoDisp  = address[indexPath.row] as! NSDictionary
    let name = addresstoDisp.value(forKey: "address")
    cell?.textLabel?.numberOfLines = 0
    cell?.translatesAutoresizingMaskIntoConstraints = false

    cell?.textLabel?.lineBreakMode = NSLineBreakMode.byWordWrapping
    cell?.textLabel?.textAlignment = NSTextAlignment.center
    cell?.textLabel?.text = name as! String

    return cell!
}

UITableViewCell高さは完全に増加しています。また、tableViewの高さを増やす必要があります。

7
Vimalkumar N.M.

セルが作成されたら、これらの行を追加します。 viewDidLoad()で高さ0を返すため

 var frame = tableView.frame
 frame.size.height = tableView.contentSize.height
 tableView.frame = frame

[〜#〜] update [〜#〜]

//After Tableviews data source values are assigned
tableView.reloadData()
tableView.layoutIfNeeded()
tableView.heightAnchor.constraint(equalToConstant: tableView.contentSize.height).isActive = true
21
RajeshKumar R

高さの制約を設定およびリセットせずに、次のようにコンテンツに基づいてテーブルビューのサイズを変更できます。

class DynamicHeightTableView: UITableView {
  override open var intrinsicContentSize: CGSize {
    return contentSize
  }
}
1
Cameron Porter