mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-30 12:23:58 -04:00
20 lines
411 B
Objective-C
20 lines
411 B
Objective-C
//
|
|
// UIMenu+FLEX.h
|
|
// FLEX
|
|
//
|
|
// Created by Tanner on 1/28/20.
|
|
// Copyright © 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIMenu (FLEX)
|
|
|
|
+ (instancetype)flex_inlineMenuWithTitle:(NSString *)title
|
|
image:(UIImage *)image
|
|
children:(NSArray<UIMenuElement *> *)children;
|
|
|
|
- (instancetype)flex_collapsed;
|
|
|
|
@end
|