(listView: ListViewBase, cell: any, view: View, eventName: string, indexPath: NSIndexPath)
| 101 | } |
| 102 | |
| 103 | function notifyForItemAtIndex(listView: ListViewBase, cell: any, view: View, eventName: string, indexPath: NSIndexPath) { |
| 104 | const args = <ItemEventData>{ |
| 105 | eventName: eventName, |
| 106 | object: listView, |
| 107 | index: indexPath.row, |
| 108 | section: indexPath.section, |
| 109 | view: view, |
| 110 | ios: cell, |
| 111 | android: undefined, |
| 112 | }; |
| 113 | listView.notify(args); |
| 114 | |
| 115 | return args; |
| 116 | } |
| 117 | |
| 118 | @NativeClass |
| 119 | class DataSource extends NSObject implements UITableViewDataSource { |
no test coverage detected