Artur Mkrtchyan
Artur Mkrtchyan
oh my bad. WIll make it open for the rightMenuSegue as well
@johnnytrandev Have you tried to import SOMessaging in "bridging header file"?
Try to remove leftBarButtonItem from navigationItem in `-viewWillAppear:` method in a viewController that you don't wont to show the menu. And also call `-disableSlidePanGestureForLeftMenu` method. e.g. ``` Obj-C #import "UIViewController+AMSlideMenu.h"...
Ah, than just remove that line `self.navigationItem.leftBarButtonItem = nil;`
Hmm, its very strange. Arte you sure that you wrote that in '-viewWillAppear:' method
For now try to call `[self.mainSlideMenu disableSlidePanGestureForLeftMenu];` again when popover/alertview is dismissed, until I'll fix this.
I think you can do that in `-configureMessageCell:forMessageAtIndex` method. Just try to play with origin. x of `cell.containerView`
`cell.containerView.frame.size.width` mast return the bubble's width
You can't set view.frame.origin.x directly. ``` Obj-C CGRect frame = cell.containerView.frame; frame.origin.x = 100; cell.containerView.frame = frame; ```