@@ -16,11 +16,9 @@ A Swift collection view inspired by Airbnb.
16
16
17
17
## Requirements
18
18
19
- With the version 1.0.5 deployment target set as 9.0 and before this version all versions are
20
- available with 8.0+
21
-
22
19
| ASCollectionView Version | Minimum iOS Target | Swift Version |
23
20
| :--------------------:| :---------------------------:| :---------------------------:|
21
+ | 1.1.1 | 10.0 | 5 |
24
22
| 1.1.0 | 9.0 | 4.2 |
25
23
| 1.0.9 | 9.0 | 4.1 |
26
24
| 1.0.8 | 9.0 | 4.0 |
@@ -37,11 +35,11 @@ $ gem install cocoapods
37
35
To integrate ASCollectionView into your Xcode project using CocoaPods, specify it in your Podfile:
38
36
```
39
37
source 'https://github.com/CocoaPods/Specs.git'
40
- platform :ios, '9 .0'
38
+ platform :ios, '10 .0'
41
39
use_frameworks!
42
40
43
41
target '<Your Target Name>' do
44
- pod 'ASCollectionView', '1.1.0 '
42
+ pod 'ASCollectionView', '1.1.1 '
45
43
end
46
44
```
47
45
Then, run the following command:
@@ -63,11 +61,21 @@ brew install carthage
63
61
To integrate ASCollectionView into your Xcode project using Carthage, specify it in your Cartfile:
64
62
65
63
```
66
- github "abdullahselek/ASCollectionView" ~> 1.1.0
64
+ github "abdullahselek/ASCollectionView" ~> 1.1.1
67
65
```
68
66
69
67
Run carthage update to build the framework and drag the built ASCollectionView.framework into your Xcode project.
70
68
69
+ ## Swift Package Manager
70
+
71
+ Modify your Package.swift file to include the following dependency:
72
+
73
+ ```
74
+ .package(url: "https://github.com/abdullahselek/ASCollectionView.git", from: "1.1.1")
75
+ ```
76
+
77
+ Run ` swift package resolve `
78
+
71
79
## Example Usage
72
80
73
81
There is a sample viewcontroller inside demo folder and I added some sample code below.
0 commit comments