-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewContentsNotice.h
executable file
·47 lines (39 loc) · 1.37 KB
/
ViewContentsNotice.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
36
37
38
39
40
41
42
43
44
45
46
47
//
// ViewContentsNotice.h
// DisasterHelper
//
// Created by ENCLAVEIT on 3/18/14.
// Copyright (c) 2014 Tan (Tharin) T.NGUYEN. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
#import "Server.h"
#import "NewServer.h"
#import "QuartzCore/CALayer.h"
@interface ViewContentsNotice : UIViewController<UITableViewDelegate>
{
IBOutlet UIImageView *profilePicture;
IBOutlet UILabel *nameContactRequest;
IBOutlet UILabel *phoneContactRequest;
IBOutlet UITextView *requestContents;
// IBOutlet UITextView *replyContents;
IBOutlet UITextField *replyTextField;
IBOutlet UIButton *replyButton;
IBOutlet UIImageView *imageBackground;
IBOutlet UIImageView *imageName;
IBOutlet UIImageView *imageChat;
IBOutlet UIImageView *imageUser;
IBOutlet UIView *contentsViewNotice;
IBOutlet UIScrollView *scrollNotice;
// IBOutlet UIButton *replyButton1;
IBOutlet UILabel *positionLabel;
IBOutlet UITableView *tableView1;
}
//@property (strong, nonatomic) IBOutlet UIView *contentViewContentsNotice;
//@property (strong, nonatomic) IBOutlet UIScrollView *scrollViewContentsNotice;
- (IBAction)replyRequest:(id)sender;
- (IBAction)dismissReply:(id)sender;
- (IBAction)ClickReplyField:(id)sender;
- (IBAction)ClickrReturnReplyField:(id)sender;
@property (strong,nonatomic) AppDelegate * currentNotice;
@end