Swiftgram/AsyncDisplayKit/Layout/ASLayoutPrivate.h
Michael Schneider d407663e3f [ASLayout] Improve ASLayout (#2404)
* 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.
2016-10-18 08:36:38 -07:00

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