Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mindinventory/bubblecollectionviewlayout

Create bubble layout of UICollectionView using custom layout
https://github.com/mindinventory/bubblecollectionviewlayout

bubblelayout objective-c swift uicollectionview uicollectionviewlayout

Last synced: 3 months ago
JSON representation

Create bubble layout of UICollectionView using custom layout

Awesome Lists containing this project

README

        

# BubbleCollectionViewLayout
Used to get layout like following screens in UICollectionView using custom layout.

![bubble_landscape](https://user-images.githubusercontent.com/84714866/176373657-19d4f9e2-131e-48f5-9f2c-77a370808c03.png)
![bubble_portrait](https://user-images.githubusercontent.com/84714866/176371515-989f8bc7-6e45-4d6f-87a1-c3d0e87fa803.png)
![Simulator Screen Shot - iPhone 14 Pro - 2023-04-20 at 15 11 17](https://user-images.githubusercontent.com/42262083/233327928-31ac781d-adb1-427f-82b5-97fc41e76577.png)

# Requirements
Minimum OS 8.1 and later

# Manual Installation
You can directly add Below the source files from Class folder to your project.

# Objective C
1) MIBubbleCollectionViewCell.h
2) MIBubbleCollectionViewCell.m
3) MICollectionViewBubbleLayout.h
4) MICollectionViewBubbleLayout.m
# Swift
1) MIBubbleCollectionViewCell.swift
2) MICollectionViewBubbleLayout.swift
3) RoundImageView.swift
4) HeaderView.swift

# Introduce
MICollectionViewBubbleLayout is subclass of UICollectionViewFlowLayout with the custom layout.

# Usage

- The easy way is to use UICollectionViewFlowLayout as it is. You can also subclass it if you intend to change the default behaviour.
- Either use it as a list to select the different tags and it's values or add the tags or value and show it in a list

Here is the instruction of how to use UICollectionViewFlowLayout in the Storyboard.

1) Add native UICollectionView to the storyboard, establish relationships with its view controllers.
2) Add UICollectionViewCell in the UICollectionView to the storyboard.
3)Chose the MIBubbleCollectionViewCell as a custom class inside the UICollectionViewCell to the storyboard.
Configuration for change DefaultInterItemSpacing & DefaultLineSpacing of collecttionview cell you just have to change the value of below two constant in MICollectionViewBubbleLayout.h

#define kDefaultInterItemSpacing 5.0f

#define kDefaultLineSpacing 5.0f

### Objective C -
1. Add "MICollectionViewBubbleLayout" ObjectiveC files to your project.

2. Conform delegate "MICollectionViewBubbleLayoutDelegate" to your class.

3. Set bubble layout in collectionview.

MICollectionViewBubbleLayout *layout = [[MICollectionViewBubbleLayout alloc] initWithDelegate:self];
[layout setMinimumLineSpacing:6.0f];
[layout setMinimumInteritemSpacing:6.0f];
[collVData setCollectionViewLayout:layout];

4. Implement MICollectionViewBubbleLayoutDelegate method to return size according to your text content.

- (CGSize)collectionView:(UICollectionView *)collectionView itemSizeAtIndexPath:(NSIndexPath *)indexPath {

NSString *title = arrData[indexPath.row];
CGSize size = [title sizeWithAttributes:@{NSFontAttributeName:[UIFont fontWithName:@"HelveticaNeue-Bold" size:15]}];
size.width = ceilf(size.width + CTitlePadding * 2);
size.height = 24;

//...Checking if item width is greater than collection view width then set item width == collection view width.
if (size.width > collectionView.frame.size.width)
size.width = collectionView.frame.size.width;
return size;
}


### Swift -
1. Add "MICollectionViewBubbleLayout" Swift file to your project.

2. Conform delegate "MICollectionViewBubbleLayoutDelegate" to your class.

3. Set bubble layout in collectionview.

let bubbleLayout = MICollectionViewBubbleLayout()
bubbleLayout.minimumLineSpacing = 6.0
bubbleLayout.minimumInteritemSpacing = 0
bubbleLayout.horizontalAlignment = .leading
collVData.setCollectionViewLayout(bubbleLayout, animated: false)
bubbleLayout.estimatedItemSize = UICollectionViewFlowLayout.automaticSize

4. Implement MICollectionViewBubbleLayoutDelegate method to return size according to your text content.

func collectionView(_ collectionView:UICollectionView, itemSizeAt indexPath:NSIndexPath) -> CGSize
{
let title = arrData[indexPath.row].name
var size = title.size(withAttributes: [NSAttributedString.Key.font: UIFont(name: "HelveticaNeue-Bold", size: 15)!])
let closeButtonWidth = 20.0
let imageWidth = 20.0
let spacing = 18.0
let totalWidth = Float(size.width + closeButtonWidth + imageWidth + spacing + CGFloat(kItemPadding * 2))
size.width = CGFloat(ceilf(totalWidth))
size.height = 40

//...Checking if item width is greater than collection view width then set item width == collection view width.
if size.width > collectionView.frame.size.width {
size.width = collectionView.frame.size.width
}

return size;
}


5. If require to add header view

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
switch kind {
case UICollectionView.elementKindSectionHeader:

let headerView = collVData.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "HeaderView", for: indexPath) as! HeaderView
headerView.lblTitleText.text = arrData[indexPath.section].title
headerView.lblTitleText.sizeToFit()
return headerView

default:
return UICollectionReusableView()

}
}

# LICENSE!

BubbleCollectionViewLayout is [MIT-licensed](https://github.com/mindinventory/BubbleCollectionViewLayout/blob/master/LICENSE).

## Let us know!
We’d be really happy if you send us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regarding our work.