test

作者: 段玉磊 | 来源:发表于2017-07-07 12:26 被阅读0次

```objective-c

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath

{

return CGSizeMake((CGRectGetWidth(self.view.frame) - 27) / 2, 95);

}

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView

{

return 1;

}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section

{

if (IS_NS_COLLECTION_EMPTY(_profileDataArray)) {

return 0;

}

return _profileDataArray.count;

}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath

{

IDSGameRoomHomePageChangeCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cellid"

forIndexPath:indexPath];

if (_profileDataArray.count > indexPath.row) {

IDSVRoomInfoModel *model = [_profileDataArray cl_objectAtIndex:indexPath.row];

[cell cellWithMode:model WithGameName:YES];

}

return cell;

}

```

相关文章

  • 泰斯拓

    TEST test Test TEST test test test test test test test

  • makedown test

    test test test test test test test ####### test test test...

  • 无标题文章

    test test test test test test test test

  • 2019-01-14

    test test test test test test test test

  • test2

    test test test test test test

  • 简书

    简书 test test test test test test

  • Test

    Test test Test Test Test

  • 无标题文章

    test test test test test

  • 此处为标题?

    测试test测试test测试test测试test测试test测试test测试test测试test测试test测试t...

  • Mardown

    Mardown test+test+test+test+test

网友评论

      本文标题:test

      本文链接:https://www.haomeiwen.com/subject/rymlhxtx.html