Skip to content

Commit d7f759f

Browse files
committed
Some cleanup
1 parent 498f0f4 commit d7f759f

File tree

4 files changed

+4
-228
lines changed

4 files changed

+4
-228
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ScrollStackController
2-
Create complex scrollable layout using UIViewController and simplify your code!
2+
Create complex scrollable layout using `UIViewController` and simplify your code!
33

44
[![Version](https://img.shields.io/cocoapods/v/OwlKit.svg?style=flat)](http://cocoadocs.org/docsets/ScrollStackController)
55
[![License](https://img.shields.io/cocoapods/l/OwlKit.svg?style=flat)](http://cocoadocs.org/docsets/ScrollStackController)
@@ -14,8 +14,8 @@ ScrollStackController is a class you can use to create complex layouts using scr
1414

1515
You can think of it as `UITableView` but with several differences:
1616

17-
- **Each row is a different `UIViewController` you can manage independently**: no more massimove controllers, a much cleaner layout.
18-
- **Powered by AutoLayout since the beginning**; it uses a combination of UIScrollView + UIStackView to offer an animation friendly controller ideal for fixed and dynamic row sizing.
17+
- **Each row is a different `UIViewController` you can manage independently**: no more massive controllers, a much cleaner and maintainable architecture.
18+
- **Powered by AutoLayout since the beginning**; it uses a combination of `UIScrollView + UIStackView` to offer an animation friendly controller ideal for fixed and dynamic row sizing.
1919
- **You don't need to struggle yourself with view recycling**: suppose you have a layout composed by several different screens. There is no need of view recycling but it cause a more difficult managment of the layout. With a simpler and safer APIs set `ScrollStackView` is the ideal way to implement such layouts.
2020

2121
<a name="index"/>
@@ -60,7 +60,7 @@ You can think of it as `UITableView` but with several differences:
6060

6161
### System Requirements
6262

63-
- iOS 9+
63+
- iOS 11+
6464
- Xcode 10+
6565
- Swift 5+
6666

ScrollStackController.podspec

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@ Pod::Spec.new do |s|
22
s.name = "ScrollStackController"
33
s.version = "1.0.0"
44
s.summary = "Create complex scrollable layout using UIViewController and simplify your code"
5-
s.description = <<-DESC
6-
Your description here.
7-
DESC
85
s.homepage = "https://github.com/malcommac/ScrollStackController"
96
s.license = { :type => "MIT", :file => "LICENSE" }
107
s.author = { "Daniele Margutti" => "[email protected]" }
118
s.social_media_url = "http://www.twitter.com/danielemargutti"
129
s.ios.deployment_target = "11.0"
13-
s.tvos.deployment_target = "9.0"
1410
s.source = { :git => ".git", :tag => s.version.to_s }
1511
s.frameworks = "Foundation", "UIKit"
1612
s.source_files = 'Sources/**/*.swift'

0 commit comments

Comments
 (0)