子视图中的UIButton,在当前ViewController中触发操作
我有一个问题。我有一个普通的视图控制器,我在滚动视图中添加 UITextViews 。我向这些 UITextview 添加动态数量的 UIButton,我想向其中添加目标。我将它们添加到 UITextViews 的原因是,将它们添加到添加文本视图原点的视图控制器将使它们最终出现在屏幕之外,当然不会滚动。但当我这样做时,按钮会触发操作。
我的问题是:如何指定视图控制器作为目标?使用 self 或使用 appdelegate 中创建的 var 作为目标不会触发它。如果“文本视图上方的两个超级级别”可以工作,我将使用它,只是不知道如何正确指定它。
我的代码:
UIImage *img=[UIImage imageNamed:@"phonebutton40x30.png"];
UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
[btn addTarget:self action:@selector(phoneemail:) forControlEvents:UIControlEventTouchUpInside];
[btn setImage:img forState:UIControlStateNormal];
btn.tag=700+i;
btn.frame=CGRectMake(xoffs+3, yoffs+19, 50, 38);
[tvMain addSubview:btn];
I have a problem. I've a normal viewcontroller where I add UITextViews in a scrollview. To these UITextviews I add a dynamic number of UIButtons, to which I want to add a target. The reason I add them to the UITextViews is that adding them to the viewcontroller adding the text view's origin will make them end up outside the screen and not scroll, of course. But when I do that, the buttons trigger the action.
My question is: how do I specify the viewcontroller as target? Using self or using the var created in the appdelegate as target does not trigger it. If "two superlevels up from the textview" will work I will use that, just don't know how to specify it correctly.
My code:
UIImage *img=[UIImage imageNamed:@"phonebutton40x30.png"];
UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
[btn addTarget:self action:@selector(phoneemail:) forControlEvents:UIControlEventTouchUpInside];
[btn setImage:img forState:UIControlStateNormal];
btn.tag=700+i;
btn.frame=CGRectMake(xoffs+3, yoffs+19, 50, 38);
[tvMain addSubview:btn];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需从代码中删除冒号
[btn addTarget:self 操作:@selector(phoneemail:) forControlEvents:UIControlEventTouchUpInside];
更正后的是
<代码>
[btn addTarget:self 操作:@selector(phoneemail) forControlEvents:UIControlEventTouchUpInside];
如果我猜,这可能会对您有所帮助。
Just remove colon from your code
[btn addTarget:self action:@selector(phoneemail:) forControlEvents:UIControlEventTouchUpInside];
The corrected one is
[btn addTarget:self action:@selector(phoneemail) forControlEvents:UIControlEventTouchUpInside];
If I guess, this will probably help you.
当时通过将按钮添加到滚动视图而不是文本视图来解决这个问题。
Solved it back then by adding the buttons to the scrollview instead of the textview.