当您到达 UIScrollView 或 UITableView 的底部时,可以轻松添加一个固定底部的图像。当内容向上弹跳时,它会保持位置,向上滚动时则会隐藏。
只需将 Src 目录中的所有文件添加到您的项目中。
CLTableWithFooterViewController.h
头文件导入到您的 UIViewController 类。footerImage
属性来发送底部的图像。这里有一个示例
#import "CLTableWithFooterViewController.h"
@interface MyViewController : CLTableWithFooterViewController
@end
@implementation MyViewController
- (void)viewDidLoad {
self.footerImage = [UIImage imageNamed:@"my_footer.png"];
}
@end
我还包含了一个示例应用程序。只需打开 Xcode 项目,进行构建和运行。
在 MIT 许可证下发布。