12345678910111213141516171819202122 |
- //
- // ASHomeBannerModels.m
- // Asteria
- //
- // Created by iOS on 2023/6/5.
- //
- #import "ASHomeBannerModel.h"
- @implementation ASHomeBannerModel
- + (ASHomeBannerModel *)demoModelWithType:(int)type {
- ASHomeBannerModel *m = [[ASHomeBannerModel alloc] init];
- m.type = type;
- m.title = [NSString stringWithFormat:@"custom_%d",type];
- m.imgUrl = @"https://5b0988e595225.cdn.sohucs.com/images/20180105/91cec947a2904ebd9eda2943880069bd.jpeg";
- m.tapUrl = @"https://baidu.com";
-
- return m;
- }
- @end
|