mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-10 14:35:42 +00:00
* Drop support for iOS 7 * Copy reference images * Update deployment for sample projects * Update version * Update "Life Without Cocoapods"
23 lines
698 B
Objective-C
23 lines
698 B
Objective-C
//
|
|
// ASDefaultPlaybackButton.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Erekle on 5/14/16.
|
|
//
|
|
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under the BSD-style license found in the
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
//
|
|
|
|
#import <AsyncDisplayKit/ASControlNode.h>
|
|
|
|
typedef NS_ENUM(NSInteger, ASDefaultPlaybackButtonType) {
|
|
ASDefaultPlaybackButtonTypePlay,
|
|
ASDefaultPlaybackButtonTypePause
|
|
};
|
|
|
|
@interface ASDefaultPlaybackButton : ASControlNode
|
|
@property (nonatomic, assign) ASDefaultPlaybackButtonType buttonType;
|
|
@end
|