public DataSource(RootViewController controller) { this.controller = controller; // Create the ViewController which will display play specific information // and re-use it for each play. PlayView = new DetailViewController(); // Create the data we need to display Plays = Play.CreateDemoPlays(); }
public DataSource (RootViewController controller) { this.controller = controller; // Create the ViewController which will display play specific information // and re-use it for each play. PlayView = new DetailViewController (); // Create the data we need to display Plays = Play.CreateDemoPlays (); }
public DataSource(DetailViewController controller) { this.controller = controller; }