TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
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.
Simply add all the files in the Src directory to your project.
CLTableWithFooterViewController.h
header file into your UIViewController class.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
Also, I included an example app. Just open the Xcode project, build, and run.
Released under the MIT license.