标签栏选定的下一个标签上的事件

时间:2014-08-11 11:39:19

标签: c# ios iphone xamarin uitabbarcontroller

如何在选定的下一个标签上获取活动 想要在事件触发后加载下一个选项卡视图控制器。 它为IOS移动应用程序创建了两个标签栏。

public class TabBarController : UITabBarController {
    UIViewController infoController, relatedController,

    public TabBarController ()
    {
        infoController = new UIViewController();
        infoController.Title = "Info";
        infoController.TabBarItem = new UITabBarItem ("Info", UIImage.FromFile("/Images/first.png"), 0); 
        infoControllerView.BackgroundColor = UIColor.Orange;

        relatedController = new UIViewController();
        relatedController.Title = "Related";
        relatedController.TabBarItem = new UITabBarItem ("Related", UIImage.FromFile("/Images/second.png"), 1);
        relatedController.View.BackgroundColor = UIColor.Orange;

        var tabs = new UIViewController[] {
            infoController, relatedController
        };
        ViewControllers = tabs;}}

第二个标签将在服务调用结果后加载。 基于响应数据将显示结果。

想知道并选择标签栏选项卡的事件。

@All

提前谢谢你。

0 个答案:

没有答案