JKTableView 0.1.0

JKTableView 0.1.0

测试已测试
语言语言 Obj-CObjective C
许可证 自定义
发布上次发布2016年4月

Maintained by Jatiender Kumar.



  • 作者
  • JKTableView

使用

要运行示例项目,首先克隆仓库,然后在 Example 目录中运行 pod install

需求

安装

JKTableView 通过 CocoaPods 提供。要安装它,只需将以下行添加到您的 Podfile 即可:

pod "JKTableView"

需求

为此控件导入两个数据源

  • (NSInteger)numberOfItemsInRecyclingScrollView:(JKScrollCell *)scrollView {

return 200; }

  • (UIView *)recyclingScrollView:(JKScrollCell *)scrollView cellForItemAtIndex:(NSInteger)index {

UIImageView *cell = [scrollView dequeueReusableCell]; if (!cell) { cell = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 235)]; } return cell; }

作者

JKTableView,[email protected]

许可证

JKTableView 可在 MIT 许可协议下使用。请参阅 LICENSE 文件以获取更多信息。