NewsBlur/clients/ios/Classes/InteractionsModule.h

39 lines
921 B
C
Raw Normal View History

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>
2017-03-19 18:15:36 -07:00
#import "NewsBlurAppDelegate.h"
#import "NewsBlur-Swift.h"
2012-07-11 20:19:42 -07:00
@class NewsBlurAppDelegate;
@interface InteractionsModule : UIView <UITableViewDelegate, UITableViewDataSource> {
NewsBlurAppDelegate *appDelegate;
UITableView *interactionsTable;
NSMutableArray *interactionsArray;
BOOL pageFetching;
BOOL pageFinished;
int interactionsPage;
2012-07-11 20:19:42 -07:00
}
2012-07-15 15:06:06 -07:00
@property (nonatomic, strong) UITableView *interactionsTable;
@property (nonatomic) NSArray *interactionsArray;
2012-07-11 20:19:42 -07:00
@property (nonatomic, readwrite) BOOL pageFetching;
@property (nonatomic, readwrite) BOOL pageFinished;
@property (readwrite) int interactionsPage;
2012-07-22 09:12:02 -07:00
- (void)refreshWithInteractions:(NSArray *)interactions;
- (void)fetchInteractionsDetail:(int)page;
- (void)checkScroll;
2012-07-11 20:19:42 -07:00
@end