123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- //
- // PSTCollectionViewCell.m
- // PSPDFKit
- //
- // Copyright (c) 2012-2013 Peter Steinberger. All rights reserved.
- //
- #import "PSTCollectionView.h"
- @interface PSTCollectionReusableView () {
- PSTCollectionViewLayoutAttributes *_layoutAttributes;
- NSString *_reuseIdentifier;
- __unsafe_unretained PSTCollectionView *_collectionView;
- struct {
- unsigned int inUpdateAnimation : 1;
- }_reusableViewFlags;
- char filler[50]; // [HACK] Our class needs to be larger than Apple's class for the superclass change to work.
- }
- @property (nonatomic, copy) NSString *reuseIdentifier;
- @property (nonatomic, unsafe_unretained) PSTCollectionView *collectionView;
- @property (nonatomic, strong) PSTCollectionViewLayoutAttributes *layoutAttributes;
- @end
- @implementation PSTCollectionReusableView
- ///////////////////////////////////////////////////////////////////////////////////////////
- #pragma mark - NSObject
- - (id)initWithFrame:(CGRect)frame {
- if ((self = [super initWithFrame:frame])) {
- }
- return self;
- }
- - (id)initWithCoder:(NSCoder *)aDecoder {
- if ((self = [super initWithCoder:aDecoder])) {
- self.reuseIdentifier = [aDecoder decodeObjectForKey:@"UIReuseIdentifier"];
- }
- return self;
- }
- - (void)awakeFromNib {
- self.reuseIdentifier = [self valueForKeyPath:@"reuseIdentifier"];
- }
- ///////////////////////////////////////////////////////////////////////////////////////////
- #pragma mark - Public
- - (void)prepareForReuse {
- self.layoutAttributes = nil;
- }
- - (void)applyLayoutAttributes:(PSTCollectionViewLayoutAttributes *)layoutAttributes {
- if (layoutAttributes != _layoutAttributes) {
- _layoutAttributes = layoutAttributes;
- self.bounds = (CGRect){.origin = self.bounds.origin, .size = layoutAttributes.size};
- self.center = layoutAttributes.center;
- self.hidden = layoutAttributes.hidden;
- self.layer.transform = layoutAttributes.transform3D;
- self.layer.zPosition = layoutAttributes.zIndex;
- self.layer.opacity = layoutAttributes.alpha;
- }
- }
- - (void)willTransitionFromLayout:(PSTCollectionViewLayout *)oldLayout toLayout:(PSTCollectionViewLayout *)newLayout {
- _reusableViewFlags.inUpdateAnimation = YES;
- }
- - (void)didTransitionFromLayout:(PSTCollectionViewLayout *)oldLayout toLayout:(PSTCollectionViewLayout *)newLayout {
- _reusableViewFlags.inUpdateAnimation = NO;
- }
- - (BOOL)isInUpdateAnimation {
- return _reusableViewFlags.inUpdateAnimation;
- }
- - (void)setInUpdateAnimation:(BOOL)inUpdateAnimation {
- _reusableViewFlags.inUpdateAnimation = (unsigned int)inUpdateAnimation;
- }
- @end
- @implementation PSTCollectionViewCell {
- UIView *_contentView;
- UIView *_backgroundView;
- UIView *_selectedBackgroundView;
- UILongPressGestureRecognizer *_menuGesture;
- id _selectionSegueTemplate;
- id _highlightingSupport;
- struct {
- unsigned int selected : 1;
- unsigned int highlighted : 1;
- unsigned int showingMenu : 1;
- unsigned int clearSelectionWhenMenuDisappears : 1;
- unsigned int waitingForSelectionAnimationHalfwayPoint : 1;
- }_collectionCellFlags;
- BOOL _selected;
- BOOL _highlighted;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////
- #pragma mark - NSObject
- - (id)initWithFrame:(CGRect)frame {
- if ((self = [super initWithFrame:frame])) {
- _backgroundView = [[UIView alloc] initWithFrame:self.bounds];
- _backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
- [self addSubview:_backgroundView];
- _contentView = [[UIView alloc] initWithFrame:self.bounds];
- _contentView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
- [self addSubview:_contentView];
- _menuGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(menuGesture:)];
- }
- return self;
- }
- - (id)initWithCoder:(NSCoder *)aDecoder {
- if ((self = [super initWithCoder:aDecoder])) {
- if (self.subviews.count > 0) {
- _contentView = self.subviews[0];
- }else {
- _contentView = [[UIView alloc] initWithFrame:self.bounds];
- _contentView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
- [self addSubview:_contentView];
- }
- _backgroundView = [[UIView alloc] initWithFrame:self.bounds];
- _backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
- [self insertSubview:_backgroundView belowSubview:_contentView];
- _menuGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(menuGesture:)];
- }
- return self;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////
- #pragma mark - Public
- - (void)prepareForReuse {
- self.layoutAttributes = nil;
- self.selected = NO;
- self.highlighted = NO;
- self.accessibilityTraits = UIAccessibilityTraitNone;
- }
- // Selection highlights underlying contents
- - (void)setSelected:(BOOL)selected {
- _collectionCellFlags.selected = (unsigned int)selected;
- self.accessibilityTraits = selected ? UIAccessibilityTraitSelected : UIAccessibilityTraitNone;
- [self updateBackgroundView:selected];
- }
- // Cell highlighting only highlights the cell itself
- - (void)setHighlighted:(BOOL)highlighted {
- _collectionCellFlags.highlighted = (unsigned int)highlighted;
- [self updateBackgroundView:highlighted];
- }
- - (void)updateBackgroundView:(BOOL)highlight {
- _selectedBackgroundView.alpha = highlight ? 1.0f : 0.0f;
- [self setHighlighted:highlight forViews:self.contentView.subviews];
- }
- - (void)setHighlighted:(BOOL)highlighted forViews:(id)subviews {
- for (id view in subviews) {
- // Ignore the events if view wants to
- if (!((UIView *)view).isUserInteractionEnabled &&
- [view respondsToSelector:@selector(setHighlighted:)] &&
- ![view isKindOfClass:UIControl.class]) {
- [view setHighlighted:highlighted];
- [self setHighlighted:highlighted forViews:[view subviews]];
- }
- }
- }
- - (void)menuGesture:(UILongPressGestureRecognizer *)recognizer {
- NSLog(@"Not yet implemented: %@", NSStringFromSelector(_cmd));
- }
- - (void)setBackgroundView:(UIView *)backgroundView {
- if (_backgroundView != backgroundView) {
- [_backgroundView removeFromSuperview];
- _backgroundView = backgroundView;
- _backgroundView.frame = self.bounds;
- _backgroundView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
- [self insertSubview:_backgroundView atIndex:0];
- }
- }
- - (void)setSelectedBackgroundView:(UIView *)selectedBackgroundView {
- if (_selectedBackgroundView != selectedBackgroundView) {
- [_selectedBackgroundView removeFromSuperview];
- _selectedBackgroundView = selectedBackgroundView;
- _selectedBackgroundView.frame = self.bounds;
- _selectedBackgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
- _selectedBackgroundView.alpha = self.selected ? 1.0f : 0.0f;
- if (_backgroundView) {
- [self insertSubview:_selectedBackgroundView aboveSubview:_backgroundView];
- }
- else {
- [self insertSubview:_selectedBackgroundView atIndex:0];
- }
- }
- }
- - (BOOL)isSelected {
- return _collectionCellFlags.selected;
- }
- - (BOOL)isHighlighted {
- return _collectionCellFlags.highlighted;
- }
- - (void)performSelectionSegue {
- /*
- Currently there's no "official" way to trigger a storyboard segue
- using UIStoryboardSegueTemplate, so we're doing it in a semi-legal way.
- */
- SEL selector = NSSelectorFromString([NSString stringWithFormat:@"per%@", @"form:"]);
- if ([self->_selectionSegueTemplate respondsToSelector:selector]) {
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Warc-performSelector-leaks"
- [self->_selectionSegueTemplate performSelector:selector withObject:self];
- #pragma clang diagnostic pop
- }
- }
- ///////////////////////////////////////////////////////////////////////////////////////////
- #pragma mark - PSTCollection/UICollection interoperability
- #ifdef kPSUIInteroperabilityEnabled
- #import <objc/runtime.h>
- - (NSMethodSignature *)methodSignatureForSelector:(SEL)selector {
- NSMethodSignature *sig = [super methodSignatureForSelector:selector];
- if(!sig) {
- NSString *selString = NSStringFromSelector(selector);
- if ([selString hasPrefix:@"_"]) {
- SEL cleanedSelector = NSSelectorFromString([selString substringFromIndex:1]);
- sig = [super methodSignatureForSelector:cleanedSelector];
- }
- }
- return sig;
- }
- - (void)forwardInvocation:(NSInvocation *)inv {
- NSString *selString = NSStringFromSelector([inv selector]);
- if ([selString hasPrefix:@"_"]) {
- SEL cleanedSelector = NSSelectorFromString([selString substringFromIndex:1]);
- if ([self respondsToSelector:cleanedSelector]) {
- inv.selector = cleanedSelector;
- [inv invokeWithTarget:self];
- }
- }else {
- [super forwardInvocation:inv];
- }
- }
- #endif
- @end
|