summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/ipjsua/Classes/FirstViewController.h
blob: 835fe4aa4b521bfc508d00da7511dbe0d43f98ce (plain)
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
//
//  FirstViewController.h
//  ipjsua
//
//  Created by Liong Sauw Ming on 3/23/10.
//  Copyright Teluu Inc. (http://www.teluu.com) 2010. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface FirstViewController : UIViewController<UITextFieldDelegate> {
    IBOutlet UITextField *textField;
    IBOutlet UITextView  *textView;
    IBOutlet UIButton	 *button1;

    NSString		 *text;
    bool		 hasInput;
}

@property (nonatomic, retain) IBOutlet UITextField *textField;
@property (nonatomic, retain) IBOutlet UITextView *textView;
@property (nonatomic, retain) IBOutlet UIButton *button1;
@property (nonatomic, retain) NSString *text;
@property (nonatomic) bool hasInput;

@end