I have implemented PullRefreshTableViewController
with some classes that take no delegates, and it works well.
However, I find it difficult to implement it in my project, because I am already implementing some delegates. How can I include delegates and the PullRefreshTableViewController
on the same line?
My Code:
myFeedController.h :-
@interface myFeedController : UIViewController<FBRequestDelegate ,UITableViewDelegate, UITableViewDataSource,ASIHTTPRequestDelegate>{
....
}