Files
Ash_AWord/Pods/PSTCollectionView/PSTCollectionView/PSTCollectionViewCell.h
T
2015-04-02 09:37:44 +08:00

50 lines
2.0 KiB
Objective-C

//
// PSTCollectionViewCell.h
// PSPDFKit
//
// Copyright (c) 2012-2013 Peter Steinberger. All rights reserved.
//
#import "PSTCollectionViewCommon.h"
@class PSTCollectionViewLayout, PSTCollectionView, PSTCollectionViewLayoutAttributes;
@interface PSTCollectionReusableView : UIView
@property (nonatomic, readonly, copy) NSString *reuseIdentifier;
// Override in subclasses. Called before instance is returned to the reuse queue.
- (void)prepareForReuse;
// Apply layout attributes on cell.
- (void)applyLayoutAttributes:(PSTCollectionViewLayoutAttributes *)layoutAttributes;
- (void)willTransitionFromLayout:(PSTCollectionViewLayout *)oldLayout toLayout:(PSTCollectionViewLayout *)newLayout;
- (void)didTransitionFromLayout:(PSTCollectionViewLayout *)oldLayout toLayout:(PSTCollectionViewLayout *)newLayout;
@end
@interface PSTCollectionReusableView (Internal)
@property (nonatomic, unsafe_unretained) PSTCollectionView *collectionView;
@property (nonatomic, copy) NSString *reuseIdentifier;
@property (nonatomic, strong, readonly) PSTCollectionViewLayoutAttributes *layoutAttributes;
@end
@interface PSTCollectionViewCell : PSTCollectionReusableView
@property (nonatomic, readonly) UIView *contentView; // add custom subviews to the cell's contentView
// Cells become highlighted when the user touches them.
// The selected state is toggled when the user lifts up from a highlighted cell.
// Override these methods to provide custom UI for a selected or highlighted state.
// The collection view may call the setters inside an animation block.
@property (nonatomic, getter=isSelected) BOOL selected;
@property (nonatomic, getter=isHighlighted) BOOL highlighted;
// The background view is a subview behind all other views.
// If selectedBackgroundView is different than backgroundView, it will be placed above the background view and animated in on selection.
@property (nonatomic, strong) UIView *backgroundView;
@property (nonatomic, strong) UIView *selectedBackgroundView;
@end