2012-07-11 18:08:07 -07:00
|
|
|
//
|
|
|
|
// ActivityModule.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/11/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
|
|
|
@interface ActivityModule : UIView
|
|
|
|
<UITableViewDelegate,
|
|
|
|
UITableViewDataSource> {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
UITableView *activitiesTable;
|
|
|
|
NSArray *activitiesArray;
|
2012-07-11 20:19:42 -07:00
|
|
|
NSString *activitiesUsername;
|
2012-07-11 18:08:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic, retain) NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic, retain) UITableView *activitiesTable;
|
|
|
|
@property (nonatomic, retain) NSArray *activitiesArray;
|
2012-07-11 20:19:42 -07:00
|
|
|
@property (nonatomic, retain) NSString *activitiesUsername;
|
2012-07-11 18:08:07 -07:00
|
|
|
|
2012-07-11 20:19:42 -07:00
|
|
|
- (void)refreshWithActivities:(NSDictionary *)activitiesDict;
|
2012-07-11 18:08:07 -07:00
|
|
|
|
|
|
|
@end
|