mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-11 15:10:37 +00:00
* Drop support for iOS 7 * Copy reference images * Update deployment for sample projects * Update version * Update "Life Without Cocoapods"
29 lines
708 B
Objective-C
29 lines
708 B
Objective-C
//
|
|
// ASLayoutElementInspectorNode.h
|
|
// Sample
|
|
//
|
|
// Created by Hannah Troisi on 3/19/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <AsyncDisplayKit/ASDisplayNode.h>
|
|
|
|
@protocol ASLayoutElement;
|
|
|
|
@protocol ASLayoutElementInspectorNodeDelegate <NSObject>
|
|
|
|
- (void)toggleVisualization:(BOOL)toggle;
|
|
|
|
@end
|
|
|
|
@interface ASLayoutElementInspectorNode : ASDisplayNode
|
|
|
|
@property (nonatomic, strong) id<ASLayoutElement> layoutElementToEdit;
|
|
@property (nonatomic, strong) id<ASLayoutElementInspectorNodeDelegate> delegate;
|
|
@property (nonatomic, assign) CGFloat vizNodeInsetSize;
|
|
|
|
+ (instancetype)sharedInstance;
|
|
|
|
@end
|