TableKit v2.0.0 Release Notes

  • 🚀 Released on 2016-10-06. Breaking changes in 2.0.0: The signatures of TableRow and TableRowAction classes were changed from

    let action = TableRowAction<String, StringTableViewCell>(.click) { (data) in
    }
    
    let row = TableRow<String, StringTableViewCell>(item: "some string", actions: [action])
    

    to

    let action = TableRowAction<StringTableViewCell>(.click) { (data) in
    }
    
    let row = TableRow<StringTableViewCell>(item: "some string", actions: [action])
    

    This is the great improvement that comes from the community. Thanks a lot!