-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
b931b56
commit 1ec42c4
Showing
26 changed files
with
881 additions
and
1,065 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
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,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" => "[email protected]" } | ||
s.author = { "fydx" => "[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.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 |
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
LazyScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-15.3 KB
...odeproj/project.xcworkspace/xcuserdata/xiaoxia.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
Oops, something went wrong.