#pragma mark ------------Collection VIEw Delegates----------------- overrIDe func numberOfSectionsInCollectionVIEw(collectionVIEw: UICollectionVIEw!) -> Int { return 1} overrIDe func collectionVIEw(collectionVIEw: UICollectionVIEw!,numberOfItemsInSection section: Int) -> Int { return 4} overrIDe func collectionVIEw(collectionVIEw: UICollectionVIEw!,cellForItemAtIndexPath indexPath: NSIndexPath!) -> UICollectionVIEwCell! { let cell = collectionVIEw.dequeueReusableCellWithReuseIDentifIEr(reuseIDentifIEr,forIndexPath: indexPath) as !MyCollectionVIEwCell // Configure the cell let image = UIImage(named: Images[indexPath.row]) cell.imageVIEw.image = image return cell} func collectionVIEw(collectionVIEw: UICollectionVIEw,layout collectionVIEwLayout: UICollectionVIEwLayout,sizeforItemAtIndexPath indexPath: NSIndexPath) -> CGSize { return CGSizeMake(_collectionVIEwToAddImages.frame.size.wIDth/2,_collectionVIEwToAddImages.frame.size.height/2); }
通过这种方式,您将拥有这样的视图,只需添加pading即可获得结果
总结以上是内存溢出为你收集整理的ios – 带有1个数据源的tableview单元格内的Collectionview全部内容,希望文章能够帮你解决ios – 带有1个数据源的tableview单元格内的Collectionview所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)