• Stars
    star
    104
  • Rank 329,414 (Top 7 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 11 years ago
  • Updated about 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Easily add a stationary footer image when you reach the bottom of your UIScrollView or UITableView.

CLTableWithFooterViewController

Easily add a stationary footer image when you reach the bottom of your UIScrollView or UITableView. It will remain put when the content bounces up and hide when scrolling up.

Installation

Simply add all the files in the Src directory to your project.

Usage

  • Just import the CLTableWithFooterViewController.h header file into your UIViewController class.
  • Create a UIViewController that is a subclass of CLTableWithFooterViewController.
  • Now just sent the footer image by calling the footerImage property.

Here's an example

#import "CLTableWithFooterViewController.h"

@interface MyViewController : CLTableWithFooterViewController
@end

@implementation MyViewController

- (void)viewDidLoad {
    self.footerImage = [UIImage imageNamed:@"my_footer.png"];
}

@end

Example

image

Also, I included an example app. Just open the Xcode project, build, and run.

License

Released under the MIT license.