Swiftgram/AsyncDisplayKit/Layout/ASBaselineStackLayoutable.h
2015-08-22 19:03:54 -07:00

24 lines
533 B
Objective-C

//
// ASBaselineStackLayoutable.h
// AsyncDisplayKit
//
// Created by Ricky Cancro on 8/21/15.
// Copyright (c) 2015 Facebook. All rights reserved.
//
#import "ASStackLayoutable.h"
@protocol ASBaselineStackLayoutable <ASStackLayoutable>
/**
* @abstract The distance from the top of the layoutable object to its baseline
*/
@property (nonatomic, readwrite) CGFloat ascender;
/**
* @abstract The distance from the bottom of the layoutable object to its baseline
*/
@property (nonatomic, readwrite) CGFloat descender;
@end