There could be two reasons:
> [self.view sendSubviewToBack:_menuView.view];
Is placing other UIViews in the view hierarchy on top of the menu view and
they could be eating touches.
> _menuView.view.frame=CGRectMake(-160,0,160,440);
> self.view.frame=CGRectMake(160, 20, 320, 548);
UIViews that a
I am able to implement side menu functionality using below code:
-(IBAction)menu:(id)sender
{
if (!_menuView) {
_menuView=[[MenuWidget alloc]init];
_menuView.view.frame=CGRectMake(-160,0,160,440);
[self.view addSubview:_menuView.view];