Ejemplo n.º 1
0
        partial void profileButtonClicked(NSObject sender)
        {
            if (ProducerClient.Shared.User == null)
            {
                var loginNc = Storyboard.Instantiate <LoginNc> ();

                PresentViewController(loginNc, true, null);
            }
            else
            {
                var userNc = Storyboard.Instantiate <UserNc> ();

                PresentViewController(userNc, true, null);
            }

            Log.Debug(RefreshControl?.ToString());
        }