-
Notifications
You must be signed in to change notification settings - Fork 0
/
ThirdTabViewController.h
38 lines (27 loc) · 1.03 KB
/
ThirdTabViewController.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
//
// ThirdTabViewController.h
// Test
//
// Created by Fabio L Brandao FH on 12/10/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
#import "VOSearchFavorite.h"
#import "FBConnect.h"
@interface ThirdTabViewController : UIViewController <UIActionSheetDelegate, UIAlertViewDelegate, UIPickerViewDelegate, UIPickerViewDataSource, UIApplicationDelegate, MFMailComposeViewControllerDelegate, FBDialogDelegate>{
NSInteger _choosenImageToShare;
IBOutlet UIPickerView *picker;
IBOutlet UIImageView *imageView;
NSArray *_vOSearchFavoriteArray;
__weak IBOutlet UIBarButtonItem *_saveButtonItem;
__weak IBOutlet UIBarButtonItem *_shareButtonItem;
}
- (IBAction)shareButton:(id)sender;
- (IBAction)saveButton:(id)sender;
- (void) saveImageToCameraRow;
- (void) tweet:(NSString *)text;
- (void) email;
- (void) shareWithFacebook;
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo;
@end