From 390797557773768ad05d4f48f30bc4645740ea99 Mon Sep 17 00:00:00 2001 From: Jason Zhekov Date: Tue, 9 Jun 2015 15:50:00 +0300 Subject: [PATCH] Remove class override of ListViewCell This is broken in the new ios runtime. --- ui/list-view/list-view.ios.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/ui/list-view/list-view.ios.ts b/ui/list-view/list-view.ios.ts index 779d33cef..20411fe62 100644 --- a/ui/list-view/list-view.ios.ts +++ b/ui/list-view/list-view.ios.ts @@ -23,9 +23,6 @@ class ListViewCell extends UITableViewCell { static new(): ListViewCell { return super.new(); } - static class(): any { - return ListViewCell; - } } function notifyForItemAtIndex(listView: definition.ListView, cell: any, eventName: string, indexPath: NSIndexPath) {