-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhotoTimelineViewController.h
30 lines (25 loc) · 1.21 KB
/
PhotoTimelineViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// PhotoTimelineViewController.h
// Teamstory
//
// Created by Freddy Hidalgo-Monchez on 2014-07-29.
//
//
#import "PAPPhotoHeaderView.h"
#import "PostFooterView.h"
#import "PAPPhotoDetailsViewController.h"
#import "PAPPhotoCell.h"
#import <UIKit/UIKit.h>
@interface PhotoTimelineViewController : UIViewController <PAPPhotoHeaderViewDelegate, PostFooterViewDelegate, UITableViewDelegate, UITableViewDataSource, UIScrollViewDelegate, UIActionSheetDelegate, MFMailComposeViewControllerDelegate, PAPPhotoCellDelegate, UIActivityItemSource, UIPopoverPresentationControllerDelegate>
@property (strong, nonatomic) IBOutlet UITableView *feed;
@property (strong, nonatomic) IBOutlet NSMutableArray *objects;
@property (nonatomic, strong) UIView *texturedBackgroundView;
@property (nonatomic, strong) PFQuery *loadQuery;
@property (nonatomic, strong) UIRefreshControl *refreshControl;
@property (nonatomic, strong) UIView *extendBgView;
@property BOOL inviteButtonCheckForShare;
- (BOOL)objectsDidLoad:(NSError *)error;
- (void)loadObjects:(void (^)(BOOL succeeded))completionBlock isRefresh:(BOOL)isRefresh fromSource:(NSString *)fromSource;
- (NSIndexPath *)getIndexPathForFeed:(NSString *)feed;
- (NSString *)getFeedSourceType;
@end