Making a TableViewController a subview of a TableViewController (ios)
I am trying to add pull to refresh to my app and am using the Pull to Refresh files here: https://github.com/leah/PullToR开发者_如何学JAVAefresh However I am confused on how to make a subclass of my table view. How does one do that?
You mean something like this?
@interface MyTableViewController : PullRefreshTableViewController
{
//Member variables here.
}
// Methods and protocols here.
@end
精彩评论