UIView底部不可单击



我遇到了这个奇怪的问题,在过去的几天里,这个问题让我抓狂。尝试了论坛上建议的各种事情和技巧,但到目前为止没有运气。基本上,我有一个带有表视图的选项卡视图控制器,当用户单击它进入详细屏幕的表行时。我在这个屏幕的底部有四个固定按钮,但这些按钮无法点击或无法识别触摸。我想这与主屏幕大小或应用程序视图框架有关。如果我把按钮放在CGRectMake(0330320,50)左右,这意味着在底部留出大约50个空白,那么它们就可以工作了。这是这个问题的相关代码-

//Bottom fixed Bar and Buttons//
self.edgesForExtendedLayout=UIRectEdgeNone;
UIImageView *lineImg=[[UIImageView alloc]init];
//lineImg.frame=CGRectMake(0, 748, 320, 2);
[lineImg setBackgroundColor:[UIColor colorWithRed:0.9058 green:0.4705 blue:0 alpha:1.0]];
[self.view addSubview:lineImg];
  addFavBtn=[UIButton buttonWithType:UIButtonTypeCustom];
[addFavBtn setBackgroundColor:[UIColor colorWithRed:0.0392 green:0.1686 blue:0.2196 alpha:1.0]];
[addFavBtn setTitle:@"Add Fav" forState:UIControlStateNormal];
[addFavBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
addFavBtn.titleLabel.textAlignment=NSTextAlignmentCenter;
addFavBtn.titleLabel.font=[UIFont fontWithName:@"MyriadPro-Regular" size:20];
[addFavBtn addTarget:self action:@selector(addFavBtnClick) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:addFavBtn];
addFavBtn.userInteractionEnabled=YES;

UIImageView *lineImg1=[[UIImageView alloc]init];
//lineImg1.frame=CGRectMake(80, 750, 1, 35);
[lineImg1 setBackgroundColor:[UIColor whiteColor]];
[self.view addSubview:lineImg1];
shareBtn=[UIButton buttonWithType:UIButtonTypeCustom];
//shareBtn.frame=CGRectMake(81, 750, 79, 35);
[shareBtn setBackgroundColor:[UIColor colorWithRed:0.0392 green:0.1686 blue:0.2196 alpha:1.0]];
[shareBtn setTitle:@"Share" forState:UIControlStateNormal];
[shareBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
shareBtn.titleLabel.textAlignment=NSTextAlignmentCenter;
shareBtn.titleLabel.font=[UIFont fontWithName:@"MyriadPro-Regular" size:20];
[shareBtn addTarget:self action:@selector(shareBtnClick:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:shareBtn];
UIImageView *lineImg2=[[UIImageView alloc]init];
//lineImg2.frame=CGRectMake(160, 748, 1, 35);
[lineImg2 setBackgroundColor:[UIColor whiteColor]];
[self.view addSubview:lineImg2];

reviewBtn=[UIButton buttonWithType:UIButtonTypeCustom];
//reviewBtn.frame=CGRectMake(161, 750, 79, 35);
[reviewBtn setBackgroundColor:[UIColor colorWithRed:0.0392 green:0.1686 blue:0.2196 alpha:1.0]];
[reviewBtn setTitle:@"Review" forState:UIControlStateNormal];
[reviewBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
reviewBtn.titleLabel.textAlignment=NSTextAlignmentCenter;
reviewBtn.titleLabel.font=[UIFont fontWithName:@"MyriadPro-Regular" size:20];
[reviewBtn addTarget:self action:@selector(reviewBtnClick) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:reviewBtn];
UIImageView *lineImg3=[[UIImageView alloc]init];
// lineImg3.frame=CGRectMake(240, 750, 1, 35);
[lineImg3 setBackgroundColor:[UIColor whiteColor]];
[self.view addSubview:lineImg3];
helpBtn=[UIButton buttonWithType:UIButtonTypeCustom];
//helpBtn.frame=CGRectMake(241, 750, 79, 35);
[helpBtn setBackgroundColor:[UIColor colorWithRed:0.0392 green:0.1686 blue:0.2196 alpha:1.0]];
[helpBtn setTitle:@"Help" forState:UIControlStateNormal];
[helpBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
helpBtn.titleLabel.textAlignment=NSTextAlignmentCenter;
helpBtn.titleLabel.font=[UIFont fontWithName:@"MyriadPro-Regular" size:20];
[helpBtn addTarget:self action:@selector(helpViewBtnClick) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:helpBtn];
UIImageView *lineImgLast=[[UIImageView alloc]init];
//lineImgLast.frame=CGRectMake(0, 748, 320, 2);
[lineImgLast setBackgroundColor:[UIColor colorWithRed:0.0392 green:0.1686 blue:0.2196 alpha:1.0]];
[self.view addSubview:lineImgLast];

imageNameDetailArray=[[NSMutableArray alloc]init];
parkListDetailArray=[[NSMutableArray alloc]init];
parkListViseDetailArray=[[NSMutableArray alloc]init];
self.responseData=[NSMutableData data];

//get the size of the screen
CGSize result = [[UIScreen mainScreen] bounds].size; //to see the actual screen size - returns 568
CGSize frame = [[UIScreen mainScreen] applicationFrame].size; //to see the application frame size - returns 548
 //UIScreen *screen = [UIScreen mainScreen];
//CGRect fullScreenRect = screen.bounds;
[self.view setAutoresizingMask:UIViewAutoresizingFlexibleHeight];
NSLog(@"mainscreen size - %f",result.height);
NSLog(@"Application frame size - %f",frame.height);
int newSize=cs+50;
int fBar=result.height-50;
homeBg.frame=CGRectMake(0,0, 320, result.height);
//set the height of the scroller view
parkViewScrollView.frame=CGRectMake(0, 63, 320, result.height-128);
parkViewScrollView.contentSize=CGSizeMake(320, newSize);

lineImg.frame=CGRectMake(0, fBar, 320, 2);
addFavBtn.frame=CGRectMake(0, fBar+2, 79, 48);
lineImg1.frame=CGRectMake(80, fBar+2, 1, 48);
shareBtn.frame=CGRectMake(81, fBar+2, 79, 48);
lineImg2.frame=CGRectMake(160, fBar+2, 1, 48);
reviewBtn.frame=CGRectMake(161, fBar+2, 79, 48);
lineImg3.frame=CGRectMake(240, fBar+2, 1, 48);
helpBtn.frame=CGRectMake(241, fBar+2, 79, 48);

https://i.stack.imgur.com/kOp9P.png

感谢大家的回复。有趣的是,即使选项卡是隐藏的,我仍然无法使用为按钮保留的空间。在按下细节视图控制器之前,我已经使用了以下行。这似乎工作得很好,我现在可以点击所有按钮了。

//this one line of code did the trick after spending hours of time 

objDetailView.hidesBottomBarWhenPushed=是;[self.navigationController pushViewController:objDetailView动画:是];

最新更新