-
Notifications
You must be signed in to change notification settings - Fork 0
/
isbnViewController.h
30 lines (26 loc) · 1 KB
/
isbnViewController.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
//
// isbnViewController.h
// BS
//
// Created by zhaoyixuan on 4/29/14.
// Copyright (c) 2014 Jiaqi Chen. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface isbnViewController : UIViewController<UITextFieldDelegate>{
IBOutlet UIScrollView *scroller;
}
- (IBAction)isbntransgorm:(id)sender;
- (IBAction)textshow:(id)sender;
@property (weak, nonatomic) IBOutlet UIButton *button;
@property (strong, nonatomic) IBOutlet UITextField *isbntextField;
@property (strong, nonatomic) IBOutlet UITextField *titletextField;
@property (strong, nonatomic) IBOutlet UITextField *authortextField;
@property (strong, nonatomic) IBOutlet UIWebView *webview;
@property (strong, nonatomic) IBOutlet UITextView *subtitletextview;
@property (strong,nonatomic) NSString* ISBN;
@property (strong,nonatomic) NSString* objectid;
@property (strong,nonatomic) NSString* booktitle;
@property (strong,nonatomic) NSString* subtitle;
@property (strong,nonatomic) NSString* author;
@property (strong,nonatomic) NSString* macaddress;
@end