Skip to content
This repository was archived by the owner on Jun 17, 2023. It is now read-only.

Commit f8fff2d

Browse files
authored
Update README.md
1 parent 2c390b4 commit f8fff2d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@
5656

5757

5858
## About
59-
CollectionViewPagingLayout is a simple but powerful tool for making complex layouts for your UICollectionView.
60-
The implementation is very simple there is custom `UICollectionViewLayout` that gives you the ability to apply transforms on the cells.
61-
No inheritance or anything like that.
62-
See [How to use](https://github.com/amirdew/CollectionViewPagingLayout#how-to-use) part for more details.
59+
CollectionViewPagingLayout is a simple but powerful tool for making complex layouts for your UICollectionView.
60+
The implementation is very simple there is custom `UICollectionViewLayout` that gives you the ability to apply transforms on the cells.
61+
No inheritance or anything like that.
62+
See [How to use](https://github.com/amirdew/CollectionViewPagingLayout#how-to-use) part for more details.
6363

6464

6565
## Installation
@@ -107,8 +107,8 @@ Just add all the files under `Lib` directory to your project
107107

108108
### Using Layout Designer
109109

110-
There is a macOS app to make it even easier for you to make your own custom layout.
111-
It allows you to tweak many options and see the result in real time.
110+
There is a macOS app to make it even easier for you to build your own custom layout.
111+
It allows you to tweak many options and see the result in real time.
112112
- Clone the repository then build and run the mac app.
113113
- Tweak options and design your layout.
114114
- Copy the code from the right panel and paste it on Xcode, make sure to choose "ViewController" if you need the full implementation.
@@ -261,12 +261,12 @@ By default, the layout loads all of the cells in the collection view frame and t
261261
You can specify the number of cells that you need to show at a time by considering your design.
262262

263263
- Touches on cells:
264-
The way that this layout works is putting all the cells in the collectionview frame (doesn't matter which TransformView you use)
265-
and then it applies transforms on the target view (StackTransformView.cardView, ScaleTransformView.scalableView etc)
264+
The way that this layout works is putting all the cells in the collectionview frame (doesn't matter which TransformView you use)
265+
and then it applies transforms on the target view (StackTransformView.cardView, ScaleTransformView.scalableView etc).
266266
so you can use `func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath)` but only for one cell at the same time
267267
you can implement `func zPosition(progress: CGFloat) -> Int` to specify wich cell should be on top
268268

269-
if you would like to handle tap on multiple cells at the same time see [Handle touches]()
269+
if you would like to handle tap on multiple cells at the same time see [Handle touches](https://github.com/amirdew/CollectionViewPagingLayout#handle-touches)
270270

271271

272272
## License

0 commit comments

Comments
 (0)