Skip to content

Instantly share code, notes, and snippets.

@HeidiHansen
Last active August 29, 2015 14:06
Show Gist options
  • Save HeidiHansen/bc1de47ac5d580ced115 to your computer and use it in GitHub Desktop.
Save HeidiHansen/bc1de47ac5d580ced115 to your computer and use it in GitHub Desktop.
Image FilterViewController.h
#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
@HeidiHansen
Copy link
Author

Cowritten with Steve Zhou

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment