예제 #1
0
        public override void TouchesEnded(NSSet touches, UIEvent evt)
        {
            var touch = (UITouch)touches.AnyObject;
            if (touch.TapCount != 1)
                return;

            var next = new UserProfileController(_user);
            _parent.NavigationController.PushViewController(next, true);
        }
예제 #2
0
        public override void TouchesEnded(NSSet touches, UIEvent evt)
        {
            var touch = (UITouch)touches.AnyObject;

            if (touch.TapCount != 1)
            {
                return;
            }

            var next = new UserProfileController(_user);

            _parent.NavigationController.PushViewController(next, true);
        }