2012-07-11 20:19:42 -07:00
|
|
|
//
|
|
|
|
// InteractionsModule.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/11/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
|
|
|
@interface InteractionsModule : UIView <UITableViewDelegate, UITableViewDataSource> {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
UITableView *interactionsTable;
|
|
|
|
NSMutableArray *interactionsArray;
|
|
|
|
}
|
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic, strong) UITableView *interactionsTable;
|
|
|
|
@property (nonatomic) NSArray *interactionsArray;
|
2012-07-11 20:19:42 -07:00
|
|
|
|
|
|
|
- (void)refreshWithInteractions:(NSMutableArray *)interactions;
|
|
|
|
|
|
|
|
@end
|