// // KWMineMoreProductModel.m // westkissMob // // Created by iOS on 2022/9/15. // #import "KWMineMoreProductModel.h" @implementation KWMineMoreProductModel + (KWMineMoreProductModel *)demoData { KWMineMoreProductModel *m = [[KWMineMoreProductModel alloc] init]; m.title = @"CUSTOMERS ALSO VIEWED"; NSMutableArray *tempArr = [NSMutableArray array]; for (NSString *title in @[@"TOP SALE",@"CLEARANCE SALE",@"NEW ARRIVALS",@"RECOMMEND BY BEHAVIOR",@"RECOMMEND BY TEXTURE"]) { HomeFilterModel *temp = [[HomeFilterModel alloc]init]; temp.title = title; temp.typeId = @(arc4random()%200).stringValue; int count = arc4random()%10 + 1; NSMutableArray *arr = [NSMutableArray array]; for (int i = 0; i