All Projects β†’ Yalantis β†’ Pulltomakesoup

Yalantis / Pulltomakesoup

Licence: mit
Custom animated pull-to-refresh that can be easily added to UIScrollView

Programming Languages

swift
15916 projects
objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Pulltomakesoup

ZVRefreshing
A pure-swift and wieldy refresh component.
Stars: ✭ 29 (-98.5%)
Mutual labels:  carthage, uiscrollview
StickyHeader
πŸ“ Library helping to add a sticky header to an UIScrollView
Stars: ✭ 18 (-99.07%)
Mutual labels:  carthage, uiscrollview
Closures
Swifty closures for UIKit and Foundation
Stars: ✭ 1,720 (-10.79%)
Mutual labels:  carthage, uiscrollview
Pixpic
PixPic, a Photo Editing App
Stars: ✭ 1,261 (-34.6%)
Mutual labels:  uiscrollview, yalantis
Eatfit
Eat fit is a component for attractive data representation inspired by Google Fit
Stars: ✭ 657 (-65.92%)
Mutual labels:  carthage, yalantis
Persei
Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift
Stars: ✭ 3,395 (+76.09%)
Mutual labels:  carthage, uiscrollview
Segmentio
Animated top/bottom segmented control written in Swift.
Stars: ✭ 2,310 (+19.81%)
Mutual labels:  carthage, yalantis
Pulltomakeflight
Custom animated pull-to-refresh that can be easily added to UIScrollView
Stars: ✭ 497 (-74.22%)
Mutual labels:  uiscrollview, yalantis
Silentscrolly
Scroll to hide navigationBar, tabBar and toolBar.
Stars: ✭ 79 (-95.9%)
Mutual labels:  carthage, uiscrollview
Colormatchtabs
This is a Review posting app that let user find interesting places near them
Stars: ✭ 1,341 (-30.45%)
Mutual labels:  carthage, yalantis
Ducttape
πŸ“¦ KeyPath dynamicMemberLookup based syntax sugar for Swift.
Stars: ✭ 138 (-92.84%)
Mutual labels:  carthage
Pipkit
Picture in Picture for iOS
Stars: ✭ 140 (-92.74%)
Mutual labels:  carthage
Heapinspector For Ios
Find memory issues & leaks in your iOS app without instruments
Stars: ✭ 1,819 (-5.65%)
Mutual labels:  carthage
Sdl ios
Get your app connected to the πŸš™, make your users feel like a 🌟
Stars: ✭ 147 (-92.38%)
Mutual labels:  carthage
Bmplayer
A video player for iOS, based on AVPlayer, support the horizontal, vertical screen. support adjust volume, brightness and seek by slide, support subtitles.
Stars: ✭ 1,736 (-9.96%)
Mutual labels:  carthage
Cdmarkdownkit
An extensive Swift framework providing simple and customizable markdown parsing.
Stars: ✭ 158 (-91.8%)
Mutual labels:  carthage
Poliopager
A flexible TabBarController with search tab like SNKRS.
Stars: ✭ 133 (-93.1%)
Mutual labels:  carthage
Cloudkit Demo.objective C
Stars: ✭ 133 (-93.1%)
Mutual labels:  yalantis
Bluetonium
Bluetooth mapping in Swift
Stars: ✭ 159 (-91.75%)
Mutual labels:  carthage
Apesuperhud
A simple way to display a HUD with a message or progress information in your application.
Stars: ✭ 156 (-91.91%)
Mutual labels:  carthage

PullToMakeSoup Carthage compatible

Custom animated pull-to-refresh that can be easily added to UIScrollView

Yalantis

Check this article on our blog to know more details about animations implementation

Inspired by this project on dribble

Requirements

  • iOS 8.0+
  • Xcode 8
  • Swift 3
  • Portrait orientation

Carthage

github "Yalantis/PullToMakeSoup" ~> 2.0

Installing with CocoaPods

use_frameworks!
pod 'PullToMakeSoup', '~> 2.0'

Usage

At first, import PullToMakeSoup framework:

import PullToMakeSoup

Create refresher:

let refresher = PullToMakeSoup()

Add refresher to your UIScrollView subclass in 'viewDidAppear' method and provide action block:

override func viewDidAppear(animated: Bool) {
    super.viewDidAppear(animated)
    tableView.addPullToRefresh(refresher) {
        // action to be performed (pull data from some source)
    }
}

After the action is completed and you want to hide the refresher:

tableView.endRefreshing()

You can also start refreshing programmatically:

tableView.startRefreshing()

Component was implemented based on customizable pull-to-refresh

Let us know!

We’d be really happy if you sent us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regarding the animation.

P.S. We’re going to publish more awesomeness wrapped in code and a tutorial on how to make UI for iOS (Android) better than better. Stay tuned!

License

The MIT License (MIT)

Copyright Β© 2017 Yalantis

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].