Questions tagged [jasidepanels]

JASidePanels is a UIViewController container designed for presenting a center panel with revealable lateral panels.

JASidePanels is a UIViewController container designed for presenting a center panel with revealable side panels - one to the left and one to the right. The main inspiration for this project is the menuing system in Path 2.0 and Facebook's iOS apps.

https://github.com/gotosleep/JASidePanels

24 questions
6
votes
1 answer

JASidePanels delegates for viewWillAppear ext not getting called

So I have set up JASidePanels with a root controller which implements JASidePanelController and my left panel which is a different UIViewController. My problem is the left panel only receives the viewWillAppear viewDidAppear/disappear and…
Vlad
  • 5,727
  • 3
  • 38
  • 59
4
votes
3 answers

iOS JASidePanel status bar customization

I am using JASidePanels in my app and everything is so far so good. My design team have come up with a UI design like this, when the side panel is shown or revealed, But I am able to reproduce like! this. What all I have tried so far: I tried…
Satheesh
  • 10,998
  • 6
  • 50
  • 93
3
votes
2 answers

presentViewController completion block not executing

I have a strange problem, the completion block from presentViewController doesn't execute lately. This is the code called on button tap DebugViewController * x = [[DebugViewController alloc] init]; x.view.backgroundColor = [UIColor…
Templar
  • 1,694
  • 1
  • 14
  • 32
3
votes
2 answers

JASidepanels not showing navigationbutton

I am trying to implement the JASidePanels in my project using storyboard. You can see my storyboard over here. The problem is that I don't see the button in the navigationbar to reveal the leftpanel. In my RootViewController I've this in…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
2
votes
1 answer

EXC_BAD_ACCESS on presentViewController:animated:completion

I have been trying to solve this for the past two days. Unable to understand why my app crashes. I'm using JASidePanel library to achieve panel effect in my app. The left side panel is a tableview which acts like navigation guide for the centre…
Dunes Buggy
  • 1,779
  • 1
  • 21
  • 41
2
votes
1 answer

Using JASidePanels

I'm trying to use JASidePanels (from github) in my project. I'm using centerviewcontroller, leftviewconrtoller and JASidePanelController based on library example. I've placed UIView on centerviewcontroller then i added IBOutlet. @property (weak,…
1
vote
1 answer

NSNotificationCenter called twice in ViewDidLoad

I'm using JASidePanels with storyboards in my aplication and also using NSNotificationCenter The problem is that: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(msgResponder:) …
CGR
  • 370
  • 1
  • 4
  • 18
1
vote
0 answers

Screen black out issue with JASidePanel

I tried to integrate the JASidePanel in my app. Below is my code for initialising JSSidePanel controller. - (void)viewDidLoad { [super viewDidLoad]; UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" …
codebot
  • 2,540
  • 3
  • 38
  • 89
1
vote
1 answer

JASidePanels fix right panel bounds

I am using JASidePanels to show a viewController on the right side of the screen. The controllers are loaded from the Main storyboard in this manner from a JASidePanelController subclass: -(void)awakeFromNib{ UIStoryboard *mainStoryboard =…
Lolloz89
  • 2,809
  • 2
  • 26
  • 41
1
vote
0 answers

JASidePanel > CenterPanel hidden rightBarButtonItems

I'm using JASSidePanels to implement the left menu effect (like Facebook iOS app). My CenterPanel has 3 rightBarButtonItems. When the LeftPanel is showed, the CenterPanel is moved to right and the 3 rightBarButtonItems of CenterPanel are hidden. How…
0
votes
1 answer

Hide LeftViewController or RightViewController with JASidePanels

I have implemented JASidePanels using storyboards in my project. LeftViewController, CenterViewController and RightViewController have the same Custom Class "myViewController" in Identity Inspector, I can add functionallity to the buttons inside of…
CGR
  • 370
  • 1
  • 4
  • 18
0
votes
1 answer

Use .xib/storyboard file as interface source of JASidePanels

I'm trying to implement in my project a JASidePanels, but first I was trying to create an interface such a .xib file or storyboard where I can drag items instead the programmatically created default interface in the project. I'm follwing steps of…
CGR
  • 370
  • 1
  • 4
  • 18
0
votes
1 answer

non-typical left menu in iOS (screens attached)

I need to implement non-typical left menu. For instance, main screen looks like this: When we press left menu button (at the top-left part of the screen) we should see this: I tried a lot of solutions (ZUUIRevealController, ViewDeck,…
Paul T.
  • 4,938
  • 7
  • 45
  • 93
0
votes
2 answers

Implement UITabViewController with JASidePanelViewController

I am implementingJASidePanel withUITabViewController but I have some problem to implement. Currently I have Category view controller with UITabView After sliding shows category like this but I want to slide only oneviewcontroller not…
Vinod Jadhav
  • 1,055
  • 1
  • 15
  • 37
0
votes
1 answer

JASidePanels memory freeing

I'm in the final development phase for an app which uses the JASidePanels control to display a menu on the left of the application (the app has 5 main sections). I'm now heavily relying on XCode's Instruments to locate CPU and memory bottlenecks,…
wrousseau
  • 1
  • 1
1
2