17 lines
377 B
Objective-C
17 lines
377 B
Objective-C
//
|
|
// SLComposeTableViewController.h
|
|
// PhotoShareExtension
|
|
//
|
|
// Created by Russell on 8/5/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ContainerViewController.h"
|
|
|
|
@interface ReceiverTableViewController : UITableViewController
|
|
@property (nonatomic, strong) ContainerViewController *containerViewController;
|
|
- (void)showActivityIndicator;
|
|
- (void)hideActivityIndicator;
|
|
@end
|