mirror of
				https://github.com/samuelclay/NewsBlur.git
				synced 2025-10-31 08:41:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
| //
 | |
| //  InteractionsModule.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 InteractionsModule : UIView <UITableViewDelegate, UITableViewDataSource> {
 | |
|     NewsBlurAppDelegate *appDelegate;
 | |
|     UITableView *interactionsTable;
 | |
|     NSMutableArray *interactionsArray;
 | |
|     UIPopoverController *popoverController;
 | |
|     
 | |
|     BOOL pageFetching;
 | |
|     BOOL pageFinished;
 | |
|     int interactionsPage;
 | |
| }
 | |
| 
 | |
| @property (nonatomic) NewsBlurAppDelegate *appDelegate;
 | |
| @property (nonatomic, strong) UITableView *interactionsTable;
 | |
| @property (nonatomic) NSArray *interactionsArray;
 | |
| @property (nonatomic, strong) UIPopoverController *popoverController;
 | |
| 
 | |
| @property (nonatomic, readwrite) BOOL pageFetching;
 | |
| @property (nonatomic, readwrite) BOOL pageFinished;
 | |
| @property (readwrite) int interactionsPage;
 | |
| 
 | |
| - (void)refreshWithInteractions:(NSArray *)interactions;
 | |
| 
 | |
| - (void)fetchInteractionsDetail:(int)page;
 | |
| - (void)finishLoadInteractions:(ASIHTTPRequest *)request;
 | |
| - (void)requestFailed:(ASIHTTPRequest *)request;
 | |
| 
 | |
| - (void)checkScroll;
 | |
| 
 | |
| @end | 
