开发者

Making a TableViewController a subview of a TableViewController (ios)

开发者 https://www.devze.com 2023-02-13 10:41 出处:网络
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 t

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
0

精彩评论

暂无评论...
验证码 换一张
取 消