Nessuna descrizione

FKActivityCardViewModel.m 473B

12345678910111213141516171819202122232425
  1. //
  2. // FKActivityCardViewModel.m
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/4/8.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import "FKActivityCardViewModel.h"
  9. @implementation FKActivityCardViewModel
  10. - (NSInteger)numberOfRowsInSection:(NSInteger)section {
  11. return self.itemsArray.count;
  12. }
  13. - (FKCouponItem *)itemAtIndex:(NSInteger)index {
  14. if (index < self.itemsArray.count) {
  15. return self.itemsArray[index];
  16. }
  17. return nil;
  18. }
  19. @end