PullToRefreshView icon indicating copy to clipboard operation
PullToRefreshView copied to clipboard

dead simple pull to refresh. you probably shouldn't use this.

Results 13 PullToRefreshView issues
Sort by recently updated
recently updated
newest added

...fresh is called when beginLoading is called. Issue #12 mentions a few problems that gmckenzi found fixes for a few months ago. Since he never made a pull request and...

Using the method described at http://mobile.dzone.com/articles/arc-support-without-branching I modified the code so it will compile for ARC projects while still being compatible with non-ARC projects.

A license file is required by CocoaPods so that users can easily identify what license a given project is. Yes, this is already in the headers of the project, but...

Change the image name to prevent conflicting file names. My project already had a file named arrow.png. Perhaps I'm doing something wrong, I'm new to iOS development. When I pulled...

This is based off the work done by Christopher Pickslay on twobitlabs' fork, but I have imporved it to work properly when the scrollview's content is smaller than its frame.

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - (id)initWithScrollView:(UIScrollView *)scroll { CGRect frame = CGRectMake(0.0f, 0.0f - scroll.bounds.size.height, scroll.bounds.size.width, scroll.bounds.size.height); if ((self = [super initWithFrame:frame])) { //................... ``` statusLabel = [[UILabel alloc] init]; //add by yager...

I can't release pullView in viewDidUnload. App will CRASH if it receive memory warning.

The latest version (5405a509) doesn't work with UIWebView. state never be set and pullToRefreshViewShouldRefresh never be triggered. Adding 'state = kPullToRefreshViewStateNormal;' in initWithScrollView makes this work with UIWebView. iPhone 5.1...