Last active
August 29, 2015 14:06
-
-
Save HeidiHansen/bc1de47ac5d580ced115 to your computer and use it in GitHub Desktop.
Image FilterViewController.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
#import "FISFilterObject.h" | |
#import "THConversationShareViewController.h" | |
@interface FISViewController : UIViewController<UIPickerViewDelegate, UIPickerViewDataSource, ConversationShareViewControllerDelegate> | |
@property (strong, nonatomic) UIImage *imageToProcess; | |
@property(strong, nonatomic) UIImage *savedImage; | |
@property (strong, nonatomic) IBOutlet UIImageView *theImageView; | |
@property (strong, nonatomic) IBOutlet UIPickerView *filterNamesPicker; | |
//@property (weak, nonatomic) THConversationShareViewController *shareVC; | |
@property (strong, nonatomic) id <ConversationShareViewControllerDelegate> delegate; | |
- (IBAction)sliderEffect:(id)sender; | |
- (IBAction)saveButtonTapped:(id)sender; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cowritten with Steve Zhou