How to change space between cells in UICollectionView?
I want to reduce the size between cells in row.
Now it looks like:
I'm trying this, for reduce the size between them:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
but it doesn't help me. What I do wrong?
ios swift uicollectionview uicollectionviewcell
|
show 6 more comments
I want to reduce the size between cells in row.
Now it looks like:
I'm trying this, for reduce the size between them:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
but it doesn't help me. What I do wrong?
ios swift uicollectionview uicollectionviewcell
1
@patchdiaz it's not a duplicate! I've tried this version, but it doesn't work. That's why I created this question
– John Doe
Feb 26 '16 at 14:24
You're right! Deleted ;)
– fdiaz
Feb 26 '16 at 14:28
Do you want your cells to be left-aligned, i.e. you'll have a lot of empty space on the right?
– Tim Vermeulen
Feb 26 '16 at 14:30
What about this one stackoverflow.com/questions/17229350/… ?
– fdiaz
Feb 26 '16 at 14:31
@TimVermeulen yes, exactly! I want 3 items on a row, with the 2 px space on right, except the last one
– John Doe
Feb 26 '16 at 14:32
|
show 6 more comments
I want to reduce the size between cells in row.
Now it looks like:
I'm trying this, for reduce the size between them:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
but it doesn't help me. What I do wrong?
ios swift uicollectionview uicollectionviewcell
I want to reduce the size between cells in row.
Now it looks like:
I'm trying this, for reduce the size between them:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
but it doesn't help me. What I do wrong?
ios swift uicollectionview uicollectionviewcell
ios swift uicollectionview uicollectionviewcell
asked Feb 26 '16 at 14:20
John DoeJohn Doe
3041620
3041620
1
@patchdiaz it's not a duplicate! I've tried this version, but it doesn't work. That's why I created this question
– John Doe
Feb 26 '16 at 14:24
You're right! Deleted ;)
– fdiaz
Feb 26 '16 at 14:28
Do you want your cells to be left-aligned, i.e. you'll have a lot of empty space on the right?
– Tim Vermeulen
Feb 26 '16 at 14:30
What about this one stackoverflow.com/questions/17229350/… ?
– fdiaz
Feb 26 '16 at 14:31
@TimVermeulen yes, exactly! I want 3 items on a row, with the 2 px space on right, except the last one
– John Doe
Feb 26 '16 at 14:32
|
show 6 more comments
1
@patchdiaz it's not a duplicate! I've tried this version, but it doesn't work. That's why I created this question
– John Doe
Feb 26 '16 at 14:24
You're right! Deleted ;)
– fdiaz
Feb 26 '16 at 14:28
Do you want your cells to be left-aligned, i.e. you'll have a lot of empty space on the right?
– Tim Vermeulen
Feb 26 '16 at 14:30
What about this one stackoverflow.com/questions/17229350/… ?
– fdiaz
Feb 26 '16 at 14:31
@TimVermeulen yes, exactly! I want 3 items on a row, with the 2 px space on right, except the last one
– John Doe
Feb 26 '16 at 14:32
1
1
@patchdiaz it's not a duplicate! I've tried this version, but it doesn't work. That's why I created this question
– John Doe
Feb 26 '16 at 14:24
@patchdiaz it's not a duplicate! I've tried this version, but it doesn't work. That's why I created this question
– John Doe
Feb 26 '16 at 14:24
You're right! Deleted ;)
– fdiaz
Feb 26 '16 at 14:28
You're right! Deleted ;)
– fdiaz
Feb 26 '16 at 14:28
Do you want your cells to be left-aligned, i.e. you'll have a lot of empty space on the right?
– Tim Vermeulen
Feb 26 '16 at 14:30
Do you want your cells to be left-aligned, i.e. you'll have a lot of empty space on the right?
– Tim Vermeulen
Feb 26 '16 at 14:30
What about this one stackoverflow.com/questions/17229350/… ?
– fdiaz
Feb 26 '16 at 14:31
What about this one stackoverflow.com/questions/17229350/… ?
– fdiaz
Feb 26 '16 at 14:31
@TimVermeulen yes, exactly! I want 3 items on a row, with the 2 px space on right, except the last one
– John Doe
Feb 26 '16 at 14:32
@TimVermeulen yes, exactly! I want 3 items on a row, with the 2 px space on right, except the last one
– John Doe
Feb 26 '16 at 14:32
|
show 6 more comments
6 Answers
6
active
oldest
votes
//Objective c
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake((collectionView.frame.size.width/3)-20, 100);
}
// Swift 2.0
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSizeMake((collectionView.frame.size.width / 3) - 20, 100)
}
// Swift 3.0
override func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: CGFloat((collectionView.frame.size.width / 3) - 20), height: CGFloat(100))
}
2
@ZacharyGover can you back up this "claim" with a creditable source? Most of Apples modules are still written in Objective-C, and it's still widely used today.
– JAL
Feb 26 '16 at 14:54
i don't think so that Objective-C is almost becoming obsolete. Still swift in the development face. At some place still Obj-C better than Swift. Lib developed in obj-c are used in swift using bridging......!!!! I hope u know it...!!:)
– Yagnesh Dobariya
Feb 26 '16 at 14:57
You do know that I said almost becoming obsolete? Yes some things are still written around Objective-C, although as Apple is updating Swift they are rewriting it all. Although that still means the majority of developers are writing in Swift. My main point that I was trying to get across is to give both answers, as you have now done. Because soon enough it will be obsolete, and people in the future won't be able to understand it if they're new to programming, when they look at this post for help.
– Zach
Feb 26 '16 at 14:59
add a comment |
Go to the storyboard , right click on collection view and
And Check your minimum spacing between the cell and reduce it to zero .
2
I did it already. Did not help
– John Doe
Feb 26 '16 at 17:51
Now issue can be in UIcollectionview cell ..... check out the constrains in UICollectionview cell ...... there should not be anytime of padding , rest i need to go through your code
– Himan Dhawan
Feb 26 '16 at 18:00
1
In story board there are two sections one is collectionview and under collectionview there is collectionview flow layout ....did u check min spacing in both ?
– Himan Dhawan
Feb 26 '16 at 18:06
add a comment |
On your code, you have to create a IBOutlet to your collection view, and then assign the collectionViewLayout as such:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
collectionView!.collectionViewLayout = layout
You are my hero.
– Bem
Jan 3 '18 at 20:47
This helped me as well..
– Rakshitha Muranga Rodrigo
Dec 9 '18 at 10:49
add a comment |
Its simple
let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
layout?.minimumLineSpacing = 8
add a comment |
If you create CollectionView
In StoryBoard
or Xib
,Go to StoryBoard
or Xib
and set these Values from
Can you give some example code of how to achieve this?
– pczeus
Feb 26 '16 at 16:44
no, I did not set it from XIB. On XIB I just set collection view cell
– John Doe
Feb 26 '16 at 17:51
add a comment |
extension ViewController: UICollectionViewDelegateFlowLayout{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let collectionWidth = collectionView.bounds.width
return CGSize(width: collectionWidth, height: collectionWidth/2)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
return 100
}
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f35654129%2fhow-to-change-space-between-cells-in-uicollectionview%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
//Objective c
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake((collectionView.frame.size.width/3)-20, 100);
}
// Swift 2.0
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSizeMake((collectionView.frame.size.width / 3) - 20, 100)
}
// Swift 3.0
override func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: CGFloat((collectionView.frame.size.width / 3) - 20), height: CGFloat(100))
}
2
@ZacharyGover can you back up this "claim" with a creditable source? Most of Apples modules are still written in Objective-C, and it's still widely used today.
– JAL
Feb 26 '16 at 14:54
i don't think so that Objective-C is almost becoming obsolete. Still swift in the development face. At some place still Obj-C better than Swift. Lib developed in obj-c are used in swift using bridging......!!!! I hope u know it...!!:)
– Yagnesh Dobariya
Feb 26 '16 at 14:57
You do know that I said almost becoming obsolete? Yes some things are still written around Objective-C, although as Apple is updating Swift they are rewriting it all. Although that still means the majority of developers are writing in Swift. My main point that I was trying to get across is to give both answers, as you have now done. Because soon enough it will be obsolete, and people in the future won't be able to understand it if they're new to programming, when they look at this post for help.
– Zach
Feb 26 '16 at 14:59
add a comment |
//Objective c
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake((collectionView.frame.size.width/3)-20, 100);
}
// Swift 2.0
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSizeMake((collectionView.frame.size.width / 3) - 20, 100)
}
// Swift 3.0
override func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: CGFloat((collectionView.frame.size.width / 3) - 20), height: CGFloat(100))
}
2
@ZacharyGover can you back up this "claim" with a creditable source? Most of Apples modules are still written in Objective-C, and it's still widely used today.
– JAL
Feb 26 '16 at 14:54
i don't think so that Objective-C is almost becoming obsolete. Still swift in the development face. At some place still Obj-C better than Swift. Lib developed in obj-c are used in swift using bridging......!!!! I hope u know it...!!:)
– Yagnesh Dobariya
Feb 26 '16 at 14:57
You do know that I said almost becoming obsolete? Yes some things are still written around Objective-C, although as Apple is updating Swift they are rewriting it all. Although that still means the majority of developers are writing in Swift. My main point that I was trying to get across is to give both answers, as you have now done. Because soon enough it will be obsolete, and people in the future won't be able to understand it if they're new to programming, when they look at this post for help.
– Zach
Feb 26 '16 at 14:59
add a comment |
//Objective c
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake((collectionView.frame.size.width/3)-20, 100);
}
// Swift 2.0
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSizeMake((collectionView.frame.size.width / 3) - 20, 100)
}
// Swift 3.0
override func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: CGFloat((collectionView.frame.size.width / 3) - 20), height: CGFloat(100))
}
//Objective c
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake((collectionView.frame.size.width/3)-20, 100);
}
// Swift 2.0
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSizeMake((collectionView.frame.size.width / 3) - 20, 100)
}
// Swift 3.0
override func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: CGFloat((collectionView.frame.size.width / 3) - 20), height: CGFloat(100))
}
edited Dec 17 '16 at 3:59
answered Feb 26 '16 at 14:37


Yagnesh DobariyaYagnesh Dobariya
1,8491225
1,8491225
2
@ZacharyGover can you back up this "claim" with a creditable source? Most of Apples modules are still written in Objective-C, and it's still widely used today.
– JAL
Feb 26 '16 at 14:54
i don't think so that Objective-C is almost becoming obsolete. Still swift in the development face. At some place still Obj-C better than Swift. Lib developed in obj-c are used in swift using bridging......!!!! I hope u know it...!!:)
– Yagnesh Dobariya
Feb 26 '16 at 14:57
You do know that I said almost becoming obsolete? Yes some things are still written around Objective-C, although as Apple is updating Swift they are rewriting it all. Although that still means the majority of developers are writing in Swift. My main point that I was trying to get across is to give both answers, as you have now done. Because soon enough it will be obsolete, and people in the future won't be able to understand it if they're new to programming, when they look at this post for help.
– Zach
Feb 26 '16 at 14:59
add a comment |
2
@ZacharyGover can you back up this "claim" with a creditable source? Most of Apples modules are still written in Objective-C, and it's still widely used today.
– JAL
Feb 26 '16 at 14:54
i don't think so that Objective-C is almost becoming obsolete. Still swift in the development face. At some place still Obj-C better than Swift. Lib developed in obj-c are used in swift using bridging......!!!! I hope u know it...!!:)
– Yagnesh Dobariya
Feb 26 '16 at 14:57
You do know that I said almost becoming obsolete? Yes some things are still written around Objective-C, although as Apple is updating Swift they are rewriting it all. Although that still means the majority of developers are writing in Swift. My main point that I was trying to get across is to give both answers, as you have now done. Because soon enough it will be obsolete, and people in the future won't be able to understand it if they're new to programming, when they look at this post for help.
– Zach
Feb 26 '16 at 14:59
2
2
@ZacharyGover can you back up this "claim" with a creditable source? Most of Apples modules are still written in Objective-C, and it's still widely used today.
– JAL
Feb 26 '16 at 14:54
@ZacharyGover can you back up this "claim" with a creditable source? Most of Apples modules are still written in Objective-C, and it's still widely used today.
– JAL
Feb 26 '16 at 14:54
i don't think so that Objective-C is almost becoming obsolete. Still swift in the development face. At some place still Obj-C better than Swift. Lib developed in obj-c are used in swift using bridging......!!!! I hope u know it...!!:)
– Yagnesh Dobariya
Feb 26 '16 at 14:57
i don't think so that Objective-C is almost becoming obsolete. Still swift in the development face. At some place still Obj-C better than Swift. Lib developed in obj-c are used in swift using bridging......!!!! I hope u know it...!!:)
– Yagnesh Dobariya
Feb 26 '16 at 14:57
You do know that I said almost becoming obsolete? Yes some things are still written around Objective-C, although as Apple is updating Swift they are rewriting it all. Although that still means the majority of developers are writing in Swift. My main point that I was trying to get across is to give both answers, as you have now done. Because soon enough it will be obsolete, and people in the future won't be able to understand it if they're new to programming, when they look at this post for help.
– Zach
Feb 26 '16 at 14:59
You do know that I said almost becoming obsolete? Yes some things are still written around Objective-C, although as Apple is updating Swift they are rewriting it all. Although that still means the majority of developers are writing in Swift. My main point that I was trying to get across is to give both answers, as you have now done. Because soon enough it will be obsolete, and people in the future won't be able to understand it if they're new to programming, when they look at this post for help.
– Zach
Feb 26 '16 at 14:59
add a comment |
Go to the storyboard , right click on collection view and
And Check your minimum spacing between the cell and reduce it to zero .
2
I did it already. Did not help
– John Doe
Feb 26 '16 at 17:51
Now issue can be in UIcollectionview cell ..... check out the constrains in UICollectionview cell ...... there should not be anytime of padding , rest i need to go through your code
– Himan Dhawan
Feb 26 '16 at 18:00
1
In story board there are two sections one is collectionview and under collectionview there is collectionview flow layout ....did u check min spacing in both ?
– Himan Dhawan
Feb 26 '16 at 18:06
add a comment |
Go to the storyboard , right click on collection view and
And Check your minimum spacing between the cell and reduce it to zero .
2
I did it already. Did not help
– John Doe
Feb 26 '16 at 17:51
Now issue can be in UIcollectionview cell ..... check out the constrains in UICollectionview cell ...... there should not be anytime of padding , rest i need to go through your code
– Himan Dhawan
Feb 26 '16 at 18:00
1
In story board there are two sections one is collectionview and under collectionview there is collectionview flow layout ....did u check min spacing in both ?
– Himan Dhawan
Feb 26 '16 at 18:06
add a comment |
Go to the storyboard , right click on collection view and
And Check your minimum spacing between the cell and reduce it to zero .
Go to the storyboard , right click on collection view and
And Check your minimum spacing between the cell and reduce it to zero .
answered Feb 26 '16 at 16:20
Himan DhawanHiman Dhawan
561215
561215
2
I did it already. Did not help
– John Doe
Feb 26 '16 at 17:51
Now issue can be in UIcollectionview cell ..... check out the constrains in UICollectionview cell ...... there should not be anytime of padding , rest i need to go through your code
– Himan Dhawan
Feb 26 '16 at 18:00
1
In story board there are two sections one is collectionview and under collectionview there is collectionview flow layout ....did u check min spacing in both ?
– Himan Dhawan
Feb 26 '16 at 18:06
add a comment |
2
I did it already. Did not help
– John Doe
Feb 26 '16 at 17:51
Now issue can be in UIcollectionview cell ..... check out the constrains in UICollectionview cell ...... there should not be anytime of padding , rest i need to go through your code
– Himan Dhawan
Feb 26 '16 at 18:00
1
In story board there are two sections one is collectionview and under collectionview there is collectionview flow layout ....did u check min spacing in both ?
– Himan Dhawan
Feb 26 '16 at 18:06
2
2
I did it already. Did not help
– John Doe
Feb 26 '16 at 17:51
I did it already. Did not help
– John Doe
Feb 26 '16 at 17:51
Now issue can be in UIcollectionview cell ..... check out the constrains in UICollectionview cell ...... there should not be anytime of padding , rest i need to go through your code
– Himan Dhawan
Feb 26 '16 at 18:00
Now issue can be in UIcollectionview cell ..... check out the constrains in UICollectionview cell ...... there should not be anytime of padding , rest i need to go through your code
– Himan Dhawan
Feb 26 '16 at 18:00
1
1
In story board there are two sections one is collectionview and under collectionview there is collectionview flow layout ....did u check min spacing in both ?
– Himan Dhawan
Feb 26 '16 at 18:06
In story board there are two sections one is collectionview and under collectionview there is collectionview flow layout ....did u check min spacing in both ?
– Himan Dhawan
Feb 26 '16 at 18:06
add a comment |
On your code, you have to create a IBOutlet to your collection view, and then assign the collectionViewLayout as such:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
collectionView!.collectionViewLayout = layout
You are my hero.
– Bem
Jan 3 '18 at 20:47
This helped me as well..
– Rakshitha Muranga Rodrigo
Dec 9 '18 at 10:49
add a comment |
On your code, you have to create a IBOutlet to your collection view, and then assign the collectionViewLayout as such:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
collectionView!.collectionViewLayout = layout
You are my hero.
– Bem
Jan 3 '18 at 20:47
This helped me as well..
– Rakshitha Muranga Rodrigo
Dec 9 '18 at 10:49
add a comment |
On your code, you have to create a IBOutlet to your collection view, and then assign the collectionViewLayout as such:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
collectionView!.collectionViewLayout = layout
On your code, you have to create a IBOutlet to your collection view, and then assign the collectionViewLayout as such:
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.sectionInset = UIEdgeInsets(top: 20, left: 2, bottom: 10, right: 2)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
collectionView!.collectionViewLayout = layout
answered May 13 '17 at 21:12
MannyManny
14122
14122
You are my hero.
– Bem
Jan 3 '18 at 20:47
This helped me as well..
– Rakshitha Muranga Rodrigo
Dec 9 '18 at 10:49
add a comment |
You are my hero.
– Bem
Jan 3 '18 at 20:47
This helped me as well..
– Rakshitha Muranga Rodrigo
Dec 9 '18 at 10:49
You are my hero.
– Bem
Jan 3 '18 at 20:47
You are my hero.
– Bem
Jan 3 '18 at 20:47
This helped me as well..
– Rakshitha Muranga Rodrigo
Dec 9 '18 at 10:49
This helped me as well..
– Rakshitha Muranga Rodrigo
Dec 9 '18 at 10:49
add a comment |
Its simple
let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
layout?.minimumLineSpacing = 8
add a comment |
Its simple
let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
layout?.minimumLineSpacing = 8
add a comment |
Its simple
let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
layout?.minimumLineSpacing = 8
Its simple
let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
layout?.minimumLineSpacing = 8
edited Jan 23 '18 at 12:02


MinnuKaAnae
1,34331431
1,34331431
answered Oct 8 '17 at 11:04
jamal zarejamal zare
1957
1957
add a comment |
add a comment |
If you create CollectionView
In StoryBoard
or Xib
,Go to StoryBoard
or Xib
and set these Values from
Can you give some example code of how to achieve this?
– pczeus
Feb 26 '16 at 16:44
no, I did not set it from XIB. On XIB I just set collection view cell
– John Doe
Feb 26 '16 at 17:51
add a comment |
If you create CollectionView
In StoryBoard
or Xib
,Go to StoryBoard
or Xib
and set these Values from
Can you give some example code of how to achieve this?
– pczeus
Feb 26 '16 at 16:44
no, I did not set it from XIB. On XIB I just set collection view cell
– John Doe
Feb 26 '16 at 17:51
add a comment |
If you create CollectionView
In StoryBoard
or Xib
,Go to StoryBoard
or Xib
and set these Values from
If you create CollectionView
In StoryBoard
or Xib
,Go to StoryBoard
or Xib
and set these Values from
edited Jan 23 '18 at 11:01


MinnuKaAnae
1,34331431
1,34331431
answered Feb 26 '16 at 16:37
Pengyu ZhangPengyu Zhang
211
211
Can you give some example code of how to achieve this?
– pczeus
Feb 26 '16 at 16:44
no, I did not set it from XIB. On XIB I just set collection view cell
– John Doe
Feb 26 '16 at 17:51
add a comment |
Can you give some example code of how to achieve this?
– pczeus
Feb 26 '16 at 16:44
no, I did not set it from XIB. On XIB I just set collection view cell
– John Doe
Feb 26 '16 at 17:51
Can you give some example code of how to achieve this?
– pczeus
Feb 26 '16 at 16:44
Can you give some example code of how to achieve this?
– pczeus
Feb 26 '16 at 16:44
no, I did not set it from XIB. On XIB I just set collection view cell
– John Doe
Feb 26 '16 at 17:51
no, I did not set it from XIB. On XIB I just set collection view cell
– John Doe
Feb 26 '16 at 17:51
add a comment |
extension ViewController: UICollectionViewDelegateFlowLayout{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let collectionWidth = collectionView.bounds.width
return CGSize(width: collectionWidth, height: collectionWidth/2)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
return 100
}
}
add a comment |
extension ViewController: UICollectionViewDelegateFlowLayout{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let collectionWidth = collectionView.bounds.width
return CGSize(width: collectionWidth, height: collectionWidth/2)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
return 100
}
}
add a comment |
extension ViewController: UICollectionViewDelegateFlowLayout{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let collectionWidth = collectionView.bounds.width
return CGSize(width: collectionWidth, height: collectionWidth/2)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
return 100
}
}
extension ViewController: UICollectionViewDelegateFlowLayout{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let collectionWidth = collectionView.bounds.width
return CGSize(width: collectionWidth, height: collectionWidth/2)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
return 100
}
}
edited Jan 1 at 9:00
answered Dec 22 '18 at 6:34


BM LADVABM LADVA
12
12
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f35654129%2fhow-to-change-space-between-cells-in-uicollectionview%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
@patchdiaz it's not a duplicate! I've tried this version, but it doesn't work. That's why I created this question
– John Doe
Feb 26 '16 at 14:24
You're right! Deleted ;)
– fdiaz
Feb 26 '16 at 14:28
Do you want your cells to be left-aligned, i.e. you'll have a lot of empty space on the right?
– Tim Vermeulen
Feb 26 '16 at 14:30
What about this one stackoverflow.com/questions/17229350/… ?
– fdiaz
Feb 26 '16 at 14:31
@TimVermeulen yes, exactly! I want 3 items on a row, with the 2 px space on right, except the last one
– John Doe
Feb 26 '16 at 14:32