mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
32 lines
735 B
C
32 lines
735 B
C
![]() |
//
|
||
|
// ActivityModule.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Roy Yang on 7/11/12.
|
||
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
@class ASIHTTPRequest;
|
||
|
|
||
|
@interface ActivityModule : UIView
|
||
|
<UITableViewDelegate,
|
||
|
UITableViewDataSource> {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
UITableView *activitiesTable;
|
||
|
NSArray *activitiesArray;
|
||
|
|
||
|
BOOL isSelf;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) NewsBlurAppDelegate *appDelegate;
|
||
|
@property (nonatomic, retain) UITableView *activitiesTable;
|
||
|
@property (nonatomic, retain) NSArray *activitiesArray;
|
||
|
@property (nonatomic, readwrite) BOOL isSelf;
|
||
|
|
||
|
- (void)refreshWithActivities:(NSArray *)activities asSelf:(BOOL)asSelf;
|
||
|
|
||
|
@end
|