2017-01-16 20 views
0

私には問題があります。UITableViewUITableViewCell、セルにはというのUICollectionViewがあります。私はUITableViewCellの高さにしたいのは、高さはUICollectionViewに相当します。UITolViewCellの高さをUICollectionViewの高さで設定します。

class TimeViewCell: UITableViewCell { 

     @IBOutlet weak var labelTime: UILabel! 

     var dataForShow = [String]() { 

      didSet{ 
       self.collectionView?.reloadData() 
      } 
     } 

     @IBOutlet weak var collectionView: UICollectionView! 



     override func awakeFromNib() { 
      super.awakeFromNib() 

      collectionView.delegate = self 
      collectionView.dataSource = self 

     } 

    } 

    extension TimeViewCell: UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout { 

     func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 

      return dataForShow.count 
     } 


     func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 

      let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CollectionCell", for: indexPath) as! CustomCollectionCell 

      cell.labelCollection.text = dataForShow[indexPath.row] 

      let realValueHeightOfCollection = collectionView.contentSize.height 

//when print realValueHeightOfCollection I see 50.0 (if dataForShow.count <4) or 110.0 (if dataForShow.count >5) 

      return cell 
     } 

    } 

が、どのように高さUITableViewCellにその高さを渡す: 私はここで本当の高さUICollectionViewを参照してください?

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 

    let cell = tableView.dequeueReusableCell(withIdentifier: "cellTime", for: indexPath) as! TimeViewCell 
    let showHour = self.infoWripper.sorted(by: { $0.hour < $1.hour })[indexPath.row] 

    cell.labelTime.text = showHour.showHour() 

    cell.dataForShow = showHour.showFullTime() 


    //here may be set the height of cell? 

    return cell 
} 

UPDのストーリーボード:enter image description here

+0

tableTime.rowHeight = cell.collectionView.collectionViewLayout.collectionViewContentSize.height 

を。 –

+0

@the_dahiya_boyどこ? –

+0

'UITableViewCell'の高さはすべて同じか変数ですか? –

答えて

2

私は1行追加することによって、私の問題を決めた: `heightOfrow`方法で` uitableviewautomaticdimension`を使用func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {...}

2

私はあなたのためのアプローチを持っている: 私は私のコードでこれを使用してテーブルビュー高さの方法であなた

と共有M:

// MARK: - TableView Delegate Methods: 
    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { 
     var height: CGFloat = 0.0 
     // // //print("arrTA[indexPath.row] = \(arrTA[indexPath.row])") 
     let dict = arrTA[indexPath.row] as! NSDictionary 
     let str = dict[ISSELECTED] as! String 
     let strFlage = dict[FLAGE] as! String 
     let arrFileCount = dict[DATA]!["file_list"] as! NSArray//dict.objectForKey(DATA)?.objectForKey("file_list").count as NSMutableArray 

     if(strFlage == "MA") { 

      height = 50.0 

     } else { 
      height = self.setExpandedViewHeight(arrFileCount.count) + 0.0     
     } 
     return height 
    } 

そして、この機能を高さ管理に使用しました:

func setExpandedViewHeight(intArrCount: Int) -> CGFloat { 
     var height: CGFloat = 0.0 
     var generatedHeight: Int = 0 

     generatedHeight = intArrCount/3 /// We get number of rows 

     if(intArrCount % 3 == 0) { 

      height = CGFloat(generatedHeight) * 100 
     } else { 

      height = (CGFloat(generatedHeight) + 1) * 100 
     } 

     return height 
    } 

最後にコードを読み、デバッグして実行していただければと思います。

+0

ありがとうございます。しかし、すべてのデバイスの番号が異なる可能性があります。// iphone 7多分2 .. –

+0

からこの関数から:setExpandedViewHeight私はすべてのデバイスで同じになるように、私はあなたがこれを決して拒否しないことを望む。 –

1

あなたが自動レイアウトを使用しているなら、あなたはこれを試すことができますが、下の末尾、大手セット、及び電池容器のビューに対するトップ制約している場合...

self.tableView.estimatedRowHeight = <estimatedRowHeight>; 
self.tableView.rowHeight = UITableViewAutomaticDimension; 

UITableViewAutomaticDimensionは動作します。

estimatedRowHeight:可能な行の高さでこの値を設定します。

これらのプロパティを設定しても、heightForRowAtIndexpathestimatedRowHeightも実装する必要はありません。

関連する問題