-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageDetailViewController.h
More file actions
34 lines (25 loc) · 894 Bytes
/
ImageDetailViewController.h
File metadata and controls
34 lines (25 loc) · 894 Bytes
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
//
// ImageDetailViewController.h
// MemoryCapsule
//
// Created by Chris Gonzalez on 3/27/13.
// Copyright (c) 2013 teambrown. All rights reserved.
//
#import "ViewController.h"
#import "CommentsViewController.h"
@protocol SendBackDelegate;
@interface ImageDetailViewController : ViewController <UITableViewDelegate>{
}
@property (strong, nonatomic) IBOutlet UIButton *deleteImageButton;
@property (strong, nonatomic) IBOutlet UIImageView *imageView;
@property (nonatomic, strong) UIImage *selectedImage;
@property (nonatomic, strong) NSString *imageName;
@property (strong, nonatomic) IBOutlet UITableView *commentsTableView;
@property (assign) id<SendBackDelegate> ptrToDelUser;
@property (nonatomic, strong) NSString * capsuleName;
- (IBAction)addCommentButtonPressed:(id)sender;
@end
@protocol SendBackDelegate<NSObject>
@required
- (void) deleteImageAgent: (id) sender;
@end