ios - UICollectionView, cells are overlapped by Navigation bar -


enter image description here

want remove space below collectionview cells:

uicollectionviewflowlayout *flowlayout = [[uicollectionviewflowlayout alloc] init]; [flowlayout setitemsize:cgsizemake(300, 435)]; [flowlayout setminimuminteritemspacing:0.0f]; [flowlayout setminimumlinespacing:20.0f]; [flowlayout setsectioninset:uiedgeinsetsmake(0, 10, 0, 10)];  [flowlayout setscrolldirection:uicollectionviewscrolldirectionhorizontal];  [self.collectionview setcollectionviewlayout:flowlayout]; 

try adding in -viewdidload:

if ([self respondstoselector:@selector(edgesforextendedlayout)])     self.edgesforextendedlayout = uirectedgenone; 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -