GitXplorerGitXplorer
d

DAAutoScroll

public
140 stars
18 forks
2 issues

Commits

List of commits on branch master.
Unverified
c8ed560b8fd4f137e4b030fab929891ed1e1de0c

Use CADisplayLink instead of UIView animation blocks. Closes #3

ddanielamitay committed 7 years ago
Unverified
253da1aab2a6d7ffad75251c4d6b604a93c51663

Bracket spacing changes

ddanielamitay committed 11 years ago
Unverified
072572796ff60158263a33621d366a90b3f929ec

Remove template comments

ddanielamitay committed 11 years ago
Unverified
815d1a699760ca4dbf0683c9ff7cdfeffa07051b

Create isScrolling getter

ddanielamitay committed 11 years ago
Unverified
894c164c4ad3292ff04b2d4917289da12bf81960

Rename a few methods

ddanielamitay committed 11 years ago
Unverified
6ed191846f76434de85f479a677e834e8752f78c

More explicit code

ddanielamitay committed 11 years ago

README

The README file for this repository.

DAAutoScroll

DAAutoScroll is a UIScrollView category that allows any chosen UIScrollView (or subclass thereof) to automatically scroll itself with adjustable speed. When the user interacts with the view, the scrolling automatically stops.

View the included example project for a demonstration.

Installation

  • Copy over the DAAutoScroll folder to your project folder.
  • #import "DAAutoScroll.h" where desired

Usage

Example project included (DAAutoScrollExample)

To restart scrolling after user interaction, you need to support the UIScrollView delegate methods scrollViewDidEndDragging: and scrollViewDidEndDecelerating:, and call startScrolling again. The example does this by default.

Automatic Reference Counting (ARC) support

DAAutoScroll was made with ARC enabled by default.

Contact

If you use/enjoy DAAutoScroll, let me know!

License

MIT License

Copyright (c) 2013 Daniel Amitay (http://www.danielamitay.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.