コード例 #1
0
partial         void OnTapped(MonoTouch.UIKit.UIButton sender)
        {
            if (textPassword.Text != "123")
                new UIAlertView("My Notes", "Wrong password!", null, "Ok").Show();
            else
            {
                var controller = new NotesTableViewController();
                var navigationController = new UINavigationController(controller);
                navigationController.SetToolbarHidden(false, false);
                this.PresentModalViewController(navigationController, true);
            }
        }
コード例 #2
0
 public NotesTableViewDelegate(NotesTableViewController controller)
 {
     _controller = controller;
 }