SLPagingView icon indicating copy to clipboard operation
SLPagingView copied to clipboard

NavigationBar display issue

Open chlebta opened this issue 10 years ago • 2 comments

Hello, I got some displaying issue in the navigation bar please check the image 'I want my nav bar looks like twitter' capture d ecran 2015-03-17 a 10 21 57

Also My CollectionView was resizing when rotating but after adding SLPagingView it doesn't resize any more I tried to add this code to didLoadView method in SLpagingView but haven't helpd :

self.view.autoresizingMask = UIViewAutoresizingFlexibleWidth |
    UIViewAutoresizingFlexibleHeight;

I'm using storyboard as in tinder example (and I'haven't added any code) I just subclassed from SLPagingView and I add the costum Segue that's all

chlebta avatar Mar 17 '15 10:03 chlebta

To solve the autoresize problem I've added this code (to parent Class of my Page not the SLPagingVC) :

self.scrollView.autoresizesSubviews = YES;
    [self.scrollView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];

Waiting for Help to fix the navbar display issue.

chlebta avatar Mar 17 '15 16:03 chlebta

@StefanLage I'm using the twitter moving redefine code , and I got this : before scrolling ( After app is lunched no interaction made yet) capture d ecran 2015-03-21 a 10 44 50

after scrolling capture d ecran 2015-03-21 a 10 53 23

chlebta avatar Mar 21 '15 09:03 chlebta