mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-03-22 19:17:42 +00:00
20 lines
587 B
Objective-C
20 lines
587 B
Objective-C
#import "PUPhotoEditViewController.h"
|
|
#import "PLVideoView.h"
|
|
#import "PLManagedAsset.h"
|
|
|
|
NS_CLASS_AVAILABLE_IOS(8_0)
|
|
@interface PUPhotoBrowserController : UIViewController <UIActionSheetDelegate>
|
|
|
|
@property (assign, nonatomic) BOOL isCameraApp;
|
|
@property (readonly, assign, nonatomic) PLVideoView *currentVideoView;
|
|
|
|
- (PLManagedAsset *)currentAsset;
|
|
- (UINavigationBar *)navigationBar;
|
|
|
|
- (BOOL)isEditingVideo;
|
|
|
|
- (id)_toolbarButtonForIdentifier:(NSString *)identifier;
|
|
|
|
- (void)photoEditController:(PUPhotoEditViewController *)controller didFinishWithSavedChanges:(BOOL)change;
|
|
|
|
@end
|