mirror of
https://github.com/wu736139669/Ash_AWord.git
synced 2026-08-07 06:37:08 +00:00
20 lines
501 B
Objective-C
20 lines
501 B
Objective-C
//
|
|
// PSTGridLayoutItem.h
|
|
// PSPDFKit
|
|
//
|
|
// Copyright (c) 2012-2013 Peter Steinberger. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class PSTGridLayoutSection, PSTGridLayoutRow;
|
|
|
|
// Represents a single grid item; only created for non-uniform-sized grids.
|
|
@interface PSTGridLayoutItem : NSObject
|
|
|
|
@property (nonatomic, unsafe_unretained) PSTGridLayoutSection *section;
|
|
@property (nonatomic, unsafe_unretained) PSTGridLayoutRow *rowObject;
|
|
@property (nonatomic, assign) CGRect itemFrame;
|
|
|
|
@end
|