// // InteractionsModule.h // NewsBlur // // Created by Roy Yang on 7/11/12. // Copyright (c) 2012 NewsBlur. All rights reserved. // #import @class NewsBlurAppDelegate; @interface InteractionsModule : UIView { NewsBlurAppDelegate *appDelegate; UITableView *interactionsTable; NSMutableArray *interactionsArray; UIPopoverController *popoverController; } @property (nonatomic) NewsBlurAppDelegate *appDelegate; @property (nonatomic, strong) UITableView *interactionsTable; @property (nonatomic) NSArray *interactionsArray; @property (nonatomic, strong) UIPopoverController *popoverController; - (void)refreshWithInteractions:(NSMutableArray *)interactions; @end