forked from cubewang/NewsReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWordsViewController_iPad.h
70 lines (49 loc) · 1.89 KB
/
WordsViewController_iPad.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
// WordsViewController_iPad.h
// iKnow
//
// Abstract: 生词本试图控制器
//
// Created by Cube on 11-5-17.
// Copyright 2011 iKnow Team. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import <CoreData/CoreData.h>
#import "iWord.h"
#import "Word.h"
#import "Parser.h"
#import "DropDownHeaderView.h"
#import "GlobalDef.h"
#import "MBProgressHUD.h"
@class LoginOrRegisterAlertView;
@class WordCardViewController;
@interface WordsViewController_iPad : UIViewController <NSFetchedResultsControllerDelegate> {
UITableView *tableView;
UIViewController *popupViewController;
DropDownHeaderView *dropDownView;
NSString *selectedWord; //查询中的单词
Word *word; //查询中的单词对应的Word对象
Parser *parser;
NSManagedObjectContext *context;
NSFetchedResultsController *_fetchedResultsController;
MBProgressHUD *HUD;
NSString *userID;
}
@property (nonatomic, copy) NSString *userID;
@property (nonatomic, retain) NSManagedObjectContext *context;
@property (nonatomic, retain) NSFetchedResultsController *fetchedResultsController;
@property (nonatomic, retain) Word *word;
@property (nonatomic, retain) Parser *parser;
@property (nonatomic, copy) NSString *selectedWord;
@property (nonatomic, retain) IBOutlet UITableView *tableView;
@property (nonatomic, retain) UIViewController *popupViewController;
@property (nonatomic, retain) DropDownHeaderView *dropDownView;
@property (nonatomic, retain) MBProgressHUD *HUD;
@property (nonatomic, retain) IBOutlet UIButton *backItem;
@property (nonatomic, retain) IBOutlet UINavigationBar *navBar;
@property (nonatomic, retain) IBOutlet UILabel *titleLabel;
- (IBAction)backupButtonClicked:(id)sender;
- (IBAction)restoreButtonClicked:(id)sender;
- (IBAction)close:(id)sender;
@end