// // InteractionsModule.h // NewsBlur // // Created by Roy Yang on 7/11/12. // Copyright (c) 2012 NewsBlur. All rights reserved. // #import @class NewsBlurAppDelegate; @class ASIHTTPRequest; @interface InteractionsModule : UIView { NewsBlurAppDelegate *appDelegate; UITableView *interactionsTable; NSMutableArray *interactionsArray; UIPopoverController *popoverController; BOOL pageFetching; BOOL pageFinished; int interactionsPage; } @property (nonatomic) NewsBlurAppDelegate *appDelegate; @property (nonatomic, strong) UITableView *interactionsTable; @property (nonatomic) NSArray *interactionsArray; @property (nonatomic, strong) UIPopoverController *popoverController; @property (nonatomic, readwrite) BOOL pageFetching; @property (nonatomic, readwrite) BOOL pageFinished; @property (readwrite) int interactionsPage; - (void)fetchInteractionsDetail:(int)page; - (void)finishLoadInteractions:(ASIHTTPRequest *)request; - (void)refreshWithInteractions:(NSArray *)interactions; - (void)requestFailed:(ASIHTTPRequest *)request; - (void)checkScroll; @end