JavaFX custom cell factory with custom Objects

All custom cell implementations that override updateItem(…) need to deal with the case where the cell is empty in that method. So you could do a naïve fix of this with public final class ConversationCell<Message> extends ListCell<Message> { @Override protected void updateItem(Message item, boolean empty) { super.updateItem(item, empty); if (empty) { setGraphic(null); } else { … Read more

Swipe-able Table View Cell in iOS 9

Try this, updated for Swift 3 (Developer Docs) override func tableView(_ tableView: UITableView, editActionsForRowAt: IndexPath) -> [UITableViewRowAction]? { let more = UITableViewRowAction(style: .normal, title: “More”) { action, index in print(“more button tapped”) } more.backgroundColor = .lightGray let favorite = UITableViewRowAction(style: .normal, title: “Favorite”) { action, index in print(“favorite button tapped”) } favorite.backgroundColor = .orange let … Read more