Example #1
0
		public override void AccessoryButtonTapped (UITableView tableView, NSIndexPath indexPath)
		{
			var artsInSection = ArtList.Where(a => a.GroupId == JaktLoggApp.instance.ArtGroupList[indexPath.Section].ID);
			var art = artsInSection.ElementAt(indexPath.Row);
			var artScreen = new ArtWebViewController(art);
			_controller.NavigationController.PushViewController(artScreen, true);
		}
Example #2
0
		void BarButtonClicked (object sender, EventArgs e)
		{
			var webView = new ArtWebViewController(_art);
			webView.ModalTransitionStyle = UIModalTransitionStyle.FlipHorizontal;
			this.PresentModalViewController(webView, true);
		}