我有两个xib的Portxib和Landxib,在两个xib中,我拖了一个按钮并分配了一个
在两个xib中将值标记为1.
我在vIEwDIDLoad中编写了这段代码
UIbutton *btn=(UIbutton *)[self.vIEw vIEwWithTag:1]; [btn addTarget:self action:@selector(BtnClick:) forControlEvents:UIControlEventtouchUpInsIDe];
这是选择器方法,
-(voID)BtnClick:(ID)sender { NSLog(@"BtnClick"); }
要么
有没有其他方法从两个方向调用相同的按钮方法?
编辑:
.h文件
.m文件
解决方法 确保…>当你在self.vIEw中找到它时,按钮被置于xib的根视图中或确保它被放置在正确的视图中并使用vIEwWithTag的视图
>您已分配标签1,因此请确保其中没有其他控件
相同的视图有标签1其他明智的按钮将不被标签识别.如果这是你的情况,那么只需将按钮的标签更改为该视图的非常不寻常的数字,如999或其他任何东西并测试.
编辑
我觉得你在vIEwDIDLoad中没有得到认可,你已经设置了你的代码.所以只需在vIEwDIDLoad中注释掉该代码,并在加载nib后转换changeOrIEntation方法.
-(voID)changeOrIEntation{ UIInterfaceOrIEntation orIEntation = [[UIApplication sharedApplication] statusbarOrIEntation]; if(orIEntation==UIInterfaceOrIEntationPortrait || orIEntation==UIInterfaceOrIEntationPortraitUpsIDeDown) { [[NSBundle mainBundle] loadNibnamed:@"PortraitXib" owner:self options:nil]; } else { [[NSBundle mainBundle] loadNibnamed:@"LandscapeXib" owner:self options:nil]; } //Adding this code here makes sense that nib is loaded and after that we are recognizing button from loaded vIEw of nib. UIbutton *btn = (UIbutton*)[self.vIEw vIEwWithTag:1]; [btn addTarget:self action:@selector(BtnClick:) forControlEvents:UIControlEventtouchUpInsIDe]; }
希望这可以帮助.
总结以上是内存溢出为你收集整理的iphone – UIButton的点击事件没有被解雇全部内容,希望文章能够帮你解决iphone – UIButton的点击事件没有被解雇所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)