mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-11 06:55:23 +00:00
* Add internal header for ASLayout and change position to readonly publicly * Don't copy sublayouts during tree filtering * Revert "Don't copy sublayouts during tree filtering" This reverts commit 6b0d54d5ffe5bb3941ec13696c9c45b0098b6ba1.
26 lines
497 B
Objective-C
26 lines
497 B
Objective-C
//
|
|
// ASLayoutPrivate.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Michael Schneider on 10/17/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import "ASLayout.h"
|
|
|
|
/**
|
|
* Private header of ASLayout for internal usage in the framework
|
|
*/
|
|
@interface ASLayout ()
|
|
|
|
/**
|
|
* Position in parent. Default to CGPointNull.
|
|
*
|
|
* @discussion When being used as a sublayout, this property must not equal CGPointNull.
|
|
*/
|
|
@property (nonatomic, assign, readwrite) CGPoint position;
|
|
|
|
@end
|