partial void View_SwipeRecognized(UISwipeGestureRecognizer sender) { CalculationsHistoryController calcController = this.Storyboard.InstantiateViewController("CalculationsHistoryController") as CalculationsHistoryController; if (Calcs != null) { calcController.Calculations = Calcs; this.NavigationController.PushViewController(calcController, true); } }
public CalcHistoryDataSource(CalculationsHistoryController controller) { this.controller = controller; }