Monotouch - Twitter /路径应用程序主要细节刷卡表视图

时间:2012-01-14 19:13:12

标签: xamarin.ios

有关如何使用MonoTouch创建twitter ipad应用程序或路径应用程序滑动主 - 详细信息表视图效果的任何线索吗?

1 个答案:

答案 0 :(得分:0)

我们的好朋友Clancey在Github上有一个名为“FlyOutNavigation”的C#端口。它适用于iPhone和iPad。但是,他有一个自定义的MonoTouch.Dialog项目,该项目未包含在回购中。所以我创建了一个自定义的DialogViewController实现,你可以放入(见下文)。

代码:https://github.com/Clancey/FlyOutNavigation

自定义DialogViewController:

public class NavigationDvc : DialogViewController
{
    public Action<NSIndexPath> OnSelection { get; set; }

    public NavigationDvc(UITableViewStyle style, RootElement root)
        : base(style, root)
    {   
    }

    public override void Selected(NSIndexPath indexPath)
    {
        base.Selected(indexPath);

        if(OnSelection != null) {
            OnSelection(indexPath); 
        }
    }
}