mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-11 15:10:37 +00:00
19 lines
367 B
Objective-C
19 lines
367 B
Objective-C
//
|
|
// ScreenNode.h
|
|
// Sample
|
|
//
|
|
// Created by Huy Nguyen on 16/09/15.
|
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <AsyncDisplayKit/AsyncDisplayKit.h>
|
|
|
|
@interface ScreenNode : ASDisplayNode
|
|
|
|
@property (nonatomic, strong) ASMultiplexImageNode *imageNode;
|
|
@property (nonatomic, strong) ASTextNode *textNode;
|
|
|
|
- (void)start;
|
|
- (void)reload;
|
|
|
|
@end |