Skip to content

Added copying of cell's layer properties to the draggable view #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -287,18 +287,51 @@ - (void)handleLongPressGesture:(UILongPressGestureRecognizer *)gestureRecognizer

UICollectionViewCell *collectionViewCell = [self.collectionView cellForItemAtIndexPath:self.selectedItemIndexPath];

self.currentView = [[UIView alloc] initWithFrame:collectionViewCell.frame];
//
// Get the draggable cell preview a frame based on bounds (independent of current transform)
// and adjust the center to the cell's frame center
//
self.currentView = [[UIView alloc] initWithFrame:collectionViewCell.bounds];
self.currentView.center = collectionViewCell.center;


collectionViewCell.highlighted = YES;
UIImageView *highlightedImageView = [[UIImageView alloc] initWithImage:[collectionViewCell LX_rasterizedImage]];
highlightedImageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
highlightedImageView.alpha = 1.0f;

// Maintain the cell's layer properties in highlight preview
highlightedImageView.clipsToBounds = YES;
highlightedImageView.layer.cornerRadius = collectionViewCell.layer.cornerRadius;
highlightedImageView.layer.borderColor = collectionViewCell.layer.borderColor;
highlightedImageView.layer.borderWidth = collectionViewCell.layer.borderWidth;


collectionViewCell.highlighted = NO;
UIImageView *imageView = [[UIImageView alloc] initWithImage:[collectionViewCell LX_rasterizedImage]];
imageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
imageView.alpha = 0.0f;

// Maintain the cell's layer properties in image preview
imageView.clipsToBounds = YES;
imageView.layer.cornerRadius = collectionViewCell.layer.cornerRadius;
imageView.layer.borderColor = collectionViewCell.layer.borderColor;
imageView.layer.borderWidth = collectionViewCell.layer.borderWidth;

//
// Maintain the cell's layer border and shadow attributes
// Here we have to disable clipsToBounds in order to make the shadow visible if availble
//
self.currentView.clipsToBounds = NO;
CGFloat cornerRadius = collectionViewCell.layer.cornerRadius;
self.currentView.layer.cornerRadius = cornerRadius;
self.currentView.layer.shadowColor = collectionViewCell.layer.shadowColor;
self.currentView.layer.shadowOffset = collectionViewCell.layer.shadowOffset;
self.currentView.layer.shadowRadius = collectionViewCell.layer.shadowRadius;
self.currentView.layer.shadowOpacity = collectionViewCell.layer.shadowOpacity;
self.currentView.layer.shadowPath = collectionViewCell.layer.shadowPath;
self.currentView.backgroundColor = [UIColor clearColor];

[self.currentView addSubview:imageView];
[self.currentView addSubview:highlightedImageView];
[self.collectionView addSubview:self.currentView];
Expand Down