我必須在下面的代碼中使用Reactive Cocoa或RxSwift來獲得動態標籤高度和動態行高度。我可以在swift 3中使用ReactiveCocoa嗎?
我可以在Swift3中使用Reactive Cocoa嗎? ReactiveCocoa和RxSwift有什麼區別?
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell: BTSTableViewCell = self.tableView.dequeueReusableCell(withIdentifier: "BTSTableViewCellIdentifier")! as! BTSTableViewCell
cell.configureWithPost(posts[indexPath.row])
cell.delegate = self
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
// 259.5+ labelHeight+ bigImageHeight
let postViewModel = posts[indexPath.row]
//caption height
var captionHeight = postViewModel.textDetail?.height(withConstrainedWidth: tableView.bounds.size.width - 20, font: UIFont.systemFont(ofSize: 17))
captionHeight = ceil(captionHeight!)
var finalCaptionHeight: CGFloat = 0.0;
if postViewModel.showDetailedCaption {
finalCaptionHeight = captionHeight!
}
else {
finalCaptionHeight = min(41, captionHeight!)
}
return 259.5 + postViewModel.getBigImageHeightFor(tableView.bounds.size.width) + finalCaptionHeight
}
@Pres回答你的問題,但我想知道,你爲什麼認爲你「必須使用Reactive Cocoa或RxSwift [...]來獲取動態標籤高度和動態行高度」? –
@Sebastian其實,我需要使用它,因爲這是我的要求。 – Bharath