33 lines
1003 B
Objective-C
33 lines
1003 B
Objective-C
//
|
|
// ShareViewController.h
|
|
// PhotoShareExtension
|
|
//
|
|
// Created by Russell on 28/4/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <Social/Social.h>
|
|
#import <MobileCoreServices/MobileCoreServices.h>
|
|
|
|
#import "ReceiverTableViewController.h"
|
|
#import "ContainerViewController.h"
|
|
|
|
FOUNDATION_EXPORT NSString *const kNixAppUrlScheme;
|
|
|
|
FOUNDATION_EXPORT NSString *const kNixAppUrlActionPhotoShare;
|
|
typedef NSString *kNixAppUrlAction;
|
|
|
|
FOUNDATION_EXPORT NSString *const kNixAppUrlQueryKeyImageUrl;
|
|
FOUNDATION_EXPORT NSString *const kNixAppUrlQueryKeyCaption;
|
|
FOUNDATION_EXPORT NSString *const kNixAppUrlQueryKeyFrameId;
|
|
typedef NSString *kNixAppUrlQueryKey;
|
|
|
|
FOUNDATION_EXPORT NSUInteger const kNixCaptionMaxLength;
|
|
FOUNDATION_EXPORT NSUInteger const kNixInputFieldCells;
|
|
|
|
@interface ImageCaptionViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UITextViewDelegate>
|
|
@property (nonatomic, strong) ContainerViewController *containerViewController;
|
|
- (IBAction)cancel:(id)sender;
|
|
@end
|