-
Notifications
You must be signed in to change notification settings - Fork 0
/
PAPrayerDetailViewController.h
35 lines (29 loc) · 1.1 KB
/
PAPrayerDetailViewController.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
31
32
33
34
35
//
// PAPrayerDetailViewController.h
// prayApp
//
// Created by Jeff Wang on 8/16/13.
// Copyright (c) 2013 Jeff Wang. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "PAPrayer.h"
#import "PAEncourageView.h"
@interface PAPrayerDetailViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, PAEncourageViewDelegate>{
UITableView* contentTableView;
UIView* prayerDetailView;
NSMutableArray* commentListing;
BOOL isLoadingChats;
UIActivityIndicatorView* loadingChatIndicator;
PAEncourageView* encourageView;
BOOL isEncourageViewHidden;
}
//IBOutlet
@property (nonatomic, strong) IBOutlet UITableView* contentTableView;
@property (nonatomic, strong) IBOutlet UILabel* prayerTitleLabel;
@property (nonatomic, strong) IBOutlet UILabel* prayerGroupLabel;
@property (nonatomic, strong) IBOutlet UILabel* prayerDetailLabel;
@property (nonatomic, strong) IBOutlet UILabel* lastUpdatedLabel;
@property (nonatomic, strong) UIImageView* descriptionImageView;
@property (nonatomic, strong) PAPrayer* prayerItem;
- (void) updateWithPrayerItem:(PAPrayer*)prayer;
@end