Skip to content

Instantly share code, notes, and snippets.

@akantsevoi
Last active October 23, 2017 13:55
Show Gist options
  • Save akantsevoi/019db4f8e07ef57d5e54360fded74d7e to your computer and use it in GitHub Desktop.
Save akantsevoi/019db4f8e07ef57d5e54360fded74d7e to your computer and use it in GitHub Desktop.
func heightForModel(dataModel: DataModel) -> CGFloat {
let stringHeight = calculateHeightForText(dataModel.text)
  let commentsHeight = dataModel.comments.count > 0 ? Constant.commentsPanelHeight : 0
return Constats.topPadding + Constants.titleHeight + stringHeight + commentsHeight
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment