ZLCollectionView
ZLCollectionView copied to clipboard
卡片式CollectionView
Results
1
ZLCollectionView issues
Sort by
recently updated
recently updated
newest added
`ZLCollectionView *collectionView = [ZLCollectionView collectionViewWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) itemCount:30]; [collectionView didSelectedItemsWithBlock:^(NSIndexPath *indexPath) { NSLog(@"ItemTag:%ld",indexPath.item); }]; [self.view addSubview:collectionView]; [collectionView mas_makeConstraints:^(MASConstraintMaker *make) { make.center.equalTo(self.view); make.size.mas_equalTo(CGSizeMake(200, 100)); }];` 这样跑起来,视图位置不对,在5s模拟器上,ios 11