Skip to content

Commit

Permalink
update to version 0.1.0:
Browse files Browse the repository at this point in the history
1. fix a problem of reuseIdentifier matching during dequeue
2. add a new feature "autoAddSubview"
3. add 2 new public properties: visibleItems & inScreenVisibleItems
4. optimize codes of scrollViewDelegate forwarding
  • Loading branch information
HarrisonXi committed Nov 22, 2017
1 parent b931b56 commit 1ec42c4
Show file tree
Hide file tree
Showing 26 changed files with 881 additions and 1,065 deletions.
35 changes: 35 additions & 0 deletions .gitignore
@@ -0,0 +1,35 @@
# Xcode

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# CocoaPods
Pods/
Podfile.lock

# Demo
*Demo/*.xcworkspace

12 changes: 8 additions & 4 deletions LazyScroll.podspec
@@ -1,17 +1,21 @@
Pod::Spec.new do |s|

s.name = "LazyScroll"
s.version = "0.0.2"
s.version = "0.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.author = { "fydx" => "lbgg918@gmail.com" }
s.author = { "fydx" => "lbgg918@gmail.com",
"HarrisonXi" => "gpra8764@gmail.com"}
s.platform = :ios
s.ios.deployment_target = "5.0"
s.source = { :git => "https://github.com/alibaba/LazyScrollView.git", :tag => "0.0.2" }
s.source_files = "LazyScrollView/TMMuiLazyScrollView.{h,m}"
s.source = { :git => "https://github.com/alibaba/LazyScrollView.git", :tag => "0.1.0" }
s.source_files = "LazyScrollView/*.{h,m}"
s.requires_arc = true

end
301 changes: 0 additions & 301 deletions LazyScrollView.xcodeproj/project.pbxproj

This file was deleted.

This file was deleted.

Binary file not shown.

0 comments on commit 1ec42c4

Please sign in to comment.