-
Notifications
You must be signed in to change notification settings - Fork 0
/
SecondTabViewController.h
45 lines (34 loc) · 1.16 KB
/
SecondTabViewController.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
//
// SecondTabViewController.h
// Test
//
// Created by Fabio L Brandao FH on 12/10/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "WSGoogleImagesAPI.h"
#import "VOSearch.h"
#import "VOSearchFavorite.h"
#import "iAd/iAd.h"
@interface SecondTabViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, ADBannerViewDelegate>{
__weak IBOutlet ADBannerView *adView;
__weak IBOutlet UILabel *rateUsOnAppStore;
NSArray *listData;
NSMutableArray *imagesArray;
NSMutableArray *uRLFonts;
NSMutableArray *uRLNames;
NSMutableArray *vOSearchArray;
IBOutlet UIButton *busca;
IBOutlet UITextField *palavraChave;
IBOutlet UITableView *myTableView;
IBOutlet UIImageView *thumb;
IBOutlet UIActivityIndicatorView *waiting;
WSGoogleImagesAPI *_googleAPI;
NSMutableArray *_vOSearchArray;
NSMutableArray *_vOSearchFavoriteArray;
}
@property (nonatomic, retain) NSArray *vOSearchFavoriteArray;
- (IBAction)getImagesInfo:(id)sender;
- (IBAction)keyboardReturn:(id)sender;
- (IBAction)keyboardReturnAfterPushingSearchButton:(id)sender;
@end