// Call the Swift API for Nib type TableViewCell let cell = tableView.dequeueReusableCell(nibClass: NibListTableViewCell.self) // Call the Objective-C API for Nib type TableViewCell let cell = tableView.dequeueReusableCell(withNibClass: NibListTableViewCell.self) as!NibListTableViewCell
// Call the Swift API for Any class TableViewCell let cell = tableView.dequeueReusableCell(anyClass: AnyClassTableViewCell.self) // Call the Objective-C API for Any class TableViewCell let cell = tableView.dequeueReusableCell(withAnyClass: AnyClassTableViewCell.self) as!AnyClassTableViewCell