简体   繁体   中英

Overriding Back button navigation in Xamarin.IOS

I am trying to override the default back button behaviour of IOS, using Xamarin.IOS framework. I have a stack of objects inside my ViewController, my requirement is that when the user presses back to navigate to previous ViewController, i will navigate only when my stack is empty otherwise i will stay in that screen(ViewController). For this i tried several thing, like overriding the ViewWillDisappear and setting the PopViewController to false but i am unable to do this. Please guide.

public override void ViewWillDisappear(bool animated)
    {
        Stack<Object> st = vPage.uContentStack;
        if (st.Count != 0)
        {
            Object pop_obj = st.Pop();
            if (st.Count != 0)
            {
                NavigationController.PopViewController(false);// Here trying to stop navigating back
                Object peek_obj = st.Peek();
                vPage.ContentUpdateOnBackPress(pop_obj, peek_obj);
            }
            else
            {
                NavigationController.PopViewController(true);
            }

        }
        else
        {
            NavigationController.PopViewController(true);
        }
        base.ViewWillDisappear(animated);
    }

You could customize the Navigation Bar in the specific ViewController

public override void ViewWillAppear(bool animated)
    {
        base.ViewWillAppear(animated);
       
        NavigationController.NavigationBar.Hidden = true;
        double height = IsiphoneX();
        UIView backView = new UIView()
        {
            BackgroundColor = UIColor.White,
            Frame = new CGRect(0, 20, UIScreen.MainScreen.Bounds.Width, height),
        };
        UIButton backBtn = new UIButton()
        {
            Frame = new CGRect(20, height - 44, 40, 44),
            Font = UIFont.SystemFontOfSize(18),
        };
        backBtn.SetTitle("<", UIControlState.Normal);
       // backBtn.SetBackgroundImage(UIImage.FromBundle("xx.png"),UIControlState.Normal); or you can set image here 
        backBtn.SetTitleColor(UIColor.FromRGB(60,140,250), UIControlState.Normal);
        backBtn.AddTarget(this, new Selector("GoBack"), UIControlEvent.TouchUpInside);
        UILabel titleLabel = new UILabel()
        {
            Frame = new CGRect(UIScreen.MainScreen.Bounds.Width / 2 - 75, 0, 150, height),
            Font = UIFont.SystemFontOfSize(20),
            Text = "xxx",
            TextAlignment = UITextAlignment.Center,
            TextColor = UIColor.Black,
            Lines = 0,
        };
        UILabel line = new UILabel()
        {
            Frame = new CGRect(0, height, UIScreen.MainScreen.Bounds.Width, 0.5),
            BackgroundColor = UIColor.Black,
        };

        backView.AddSubview(backBtn);
        backView.AddSubview(titleLabel);
        backView.AddSubview(line);
        View.AddSubview(backView);
    }
    double IsiphoneX()
    {
        double height = 44;
        if (UIDevice.CurrentDevice.CheckSystemVersion(11, 0))
        {
            if (UIApplication.SharedApplication.Delegate.GetWindow().SafeAreaInsets.Bottom > 0.0)
            {
                height = 64;
            }
        }
        return height;
    }
    [Export("GoBack")]
    void GoBack()
    {
       //handle logic here
    }
    public override void ViewWillDisappear(bool animated)
    {
        base.ViewWillDisappear(animated);

        NavigationController.NavigationBar.Hidden = false;
    }

In this solution you could set the style of the navigation bar , like text color of title or icon of back button .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM