2017-04-22 10 views
0

私はiOSアプリケーションを作成しています。 ユーザーはムービー検索キーワードを入力し、omdbapi.comからデータを取り出し、ムービーをtableviewに表示します。 テーブルビューのセルが正しく表示されないという問題があります。TableViewCell自動高さの問題

プロジェクトURL: project on onedrive

私はすべての自動レイアウトの方法を使用してみましたが、その作業はありません。

override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 
     return UITableViewAutomaticDimension; 

    } 
+0

この記事の意志がhttp://stackoverflow.com/questions/40293336/uitableviewautomaticdimension-not-working-for-resizing-cell-height/40300589#40300589 – Joe

+0

あなたがATIF Shabeer –

+0

チェック@これをあなたの結果画像を投稿できるのに役立ちますチェックout http://stackoverflow.com/a/43556505/3236890 – dip

答えて

0

テーブル高さの見積もり方法も設定する必要があります。高さの計算のためにこれらのメソッドを配置し、あなたのセルの制約をチェックしてください。

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat { 
    return UITableViewAutomaticDimension 
} 

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 
    return UITableViewAutomaticDimension 
    } 

希望すると、これが役に立ちます。