How to change space between cells in UICollectionView?












15















I want to reduce the size between cells in row.
Now it looks like:



enter image description here



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?










share|improve this question


















  • 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
















15















I want to reduce the size between cells in row.
Now it looks like:



enter image description here



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?










share|improve this question


















  • 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














15












15








15


4






I want to reduce the size between cells in row.
Now it looks like:



enter image description here



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?










share|improve this question














I want to reduce the size between cells in row.
Now it looks like:



enter image description here



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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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














  • 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












6 Answers
6






active

oldest

votes


















22














//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))
}





share|improve this answer





















  • 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



















20














Go to the storyboard , right click on collection view and enter image description here



And Check your minimum spacing between the cell and reduce it to zero .






share|improve this answer



















  • 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



















7














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





share|improve this answer
























  • 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



















3














Its simple



let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
layout?.minimumLineSpacing = 8





share|improve this answer

































    1














    If you create CollectionView In StoryBoard or Xib,Go to StoryBoard or Xib and set these Values from



    enter image description here






    share|improve this answer


























    • 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



















    0














    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
    }


    }






    share|improve this answer

























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      22














      //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))
      }





      share|improve this answer





















      • 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
















      22














      //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))
      }





      share|improve this answer





















      • 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














      22












      22








      22







      //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))
      }





      share|improve this answer















      //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))
      }






      share|improve this answer














      share|improve this answer



      share|improve this answer








      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














      • 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













      20














      Go to the storyboard , right click on collection view and enter image description here



      And Check your minimum spacing between the cell and reduce it to zero .






      share|improve this answer



















      • 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
















      20














      Go to the storyboard , right click on collection view and enter image description here



      And Check your minimum spacing between the cell and reduce it to zero .






      share|improve this answer



















      • 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














      20












      20








      20







      Go to the storyboard , right click on collection view and enter image description here



      And Check your minimum spacing between the cell and reduce it to zero .






      share|improve this answer













      Go to the storyboard , right click on collection view and enter image description here



      And Check your minimum spacing between the cell and reduce it to zero .







      share|improve this answer












      share|improve this answer



      share|improve this answer










      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














      • 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











      7














      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





      share|improve this answer
























      • 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
















      7














      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





      share|improve this answer
























      • 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














      7












      7








      7







      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





      share|improve this answer













      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






      share|improve this answer












      share|improve this answer



      share|improve this answer










      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



















      • 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











      3














      Its simple



      let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
      layout?.minimumLineSpacing = 8





      share|improve this answer






























        3














        Its simple



        let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
        layout?.minimumLineSpacing = 8





        share|improve this answer




























          3












          3








          3







          Its simple



          let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
          layout?.minimumLineSpacing = 8





          share|improve this answer















          Its simple



          let layout = contactsCollectionView.collectionViewLayout as? UICollectionViewFlowLayout
          layout?.minimumLineSpacing = 8






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 23 '18 at 12:02









          MinnuKaAnae

          1,34331431




          1,34331431










          answered Oct 8 '17 at 11:04









          jamal zarejamal zare

          1957




          1957























              1














              If you create CollectionView In StoryBoard or Xib,Go to StoryBoard or Xib and set these Values from



              enter image description here






              share|improve this answer


























              • 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
















              1














              If you create CollectionView In StoryBoard or Xib,Go to StoryBoard or Xib and set these Values from



              enter image description here






              share|improve this answer


























              • 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














              1












              1








              1







              If you create CollectionView In StoryBoard or Xib,Go to StoryBoard or Xib and set these Values from



              enter image description here






              share|improve this answer















              If you create CollectionView In StoryBoard or Xib,Go to StoryBoard or Xib and set these Values from



              enter image description here







              share|improve this answer














              share|improve this answer



              share|improve this answer








              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



















              • 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











              0














              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
              }


              }






              share|improve this answer






























                0














                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
                }


                }






                share|improve this answer




























                  0












                  0








                  0







                  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
                  }


                  }






                  share|improve this answer















                  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
                  }


                  }







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Jan 1 at 9:00

























                  answered Dec 22 '18 at 6:34









                  BM LADVABM LADVA

                  12




                  12






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      MongoDB - Not Authorized To Execute Command

                      Npm cannot find a required file even through it is in the searched directory

                      in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith