This repository has been archived by the owner on Jul 1, 2023. It is now read-only.
forked from atom2ueki/LazyScrollView
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18ef337
commit dbc61f8
Showing
9 changed files
with
30 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "LazyScroll" | ||
s.version = "0.1.1" | ||
s.version = "1.0" | ||
s.summary = "A ScrollView to resolve the problem of reusability of views." | ||
|
||
s.description = <<-DESC | ||
It reply an another way to control reuse in a ScrollView, it depends on give a special reuse identifier to every view controlled in LazyScrollView. | ||
DESC | ||
|
||
s.homepage = "https://github.com/alibaba/LazyScrollView" | ||
s.license = {:type => 'MIT'} | ||
s.license = { :type => 'MIT' } | ||
s.author = { "fydx" => "[email protected]", | ||
"HarrisonXi" => "[email protected]"} | ||
"HarrisonXi" => "[email protected]" } | ||
s.platform = :ios | ||
s.ios.deployment_target = "5.0" | ||
s.source = { :git => "https://github.com/alibaba/LazyScrollView.git", :tag => "0.1.1" } | ||
s.source = { :git => "https://github.com/alibaba/LazyScrollView.git", :tag => "1.0" } | ||
s.source_files = "LazyScrollView/*.{h,m}" | ||
s.requires_arc = true | ||
|
||
# s.dependency 'TMUtils', '~> 1.0' | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
LazyScrollViewDemo/LazyScrollViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
source "https://github.com/CocoaPods/Specs.git" | ||
|
||
platform :ios, '8.0' | ||
|
||
target 'LazyScrollViewDemo' do | ||
platform :ios, '8.0' | ||
pod 'LazyScroll', :path=>'../' | ||
pod 'LazyScroll', :path => '../' | ||
pod 'TMUtils', :path => '../' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "TMUtils" | ||
s.version = "1.0" | ||
s.summary = "Common safe methods & utils for NSArray & NSDictionary." | ||
s.homepage = "https://github.com/alibaba/LazyScrollView" | ||
s.license = {:type => 'MIT'} | ||
s.author = { "HarrisonXi" => "[email protected]" } | ||
s.platform = :ios | ||
s.ios.deployment_target = "5.0" | ||
s.source = { :git => "https://github.com/alibaba/LazyScrollView.git", :tag => "1.0" } | ||
s.source_files = "TMUtils/*.{h,m}" | ||
s.requires_arc = true | ||
|
||
end |
File renamed without changes.
File renamed without changes.