使TableViewController成为TableViewController(ios)的子视图

时间:2011-02-26 21:07:38

标签: ios iphone uitableview class ipad

我正在尝试添加pull to refresh到我的应用程序并在此处使用Pull to Refresh文件:https://github.com/leah/PullToRefresh但是我对如何创建表视图的子类感到困惑。如何做到这一点?

1 个答案:

答案 0 :(得分:0)

你的意思是这样的吗?

@interface MyTableViewController : PullRefreshTableViewController
{
    //Member variables here.
} 

// Methods and protocols here.

@end