如果 UIButton 的位置超出其超级视图,但它是可见的,它可以响应触摸事件吗?
如果 UIButton 的位置超出其超级视图,但它是可见的,它可以响应触摸事件吗?
UIView *view01 = [[UIView alloc] initWithFrame:CGRectMake(0,0,200,200)];
UIButton *button01 = [UIButton buttonWithStyle:UIButtonType:UIButtonTypeRoundedRect];
[button01 addTarget:self action:@selector(testTouch:) forControlEvents:UIControlEventTouchUpInside];
button01.frame = CGRectMake(0, 200, 60, 40);
[view01 addSubview:button01];
- (void)testTouch:(id)sender{
NSLog(@"Touched.....");
}
…………
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还需要将
view01
添加到视图中。You need to add
view01
to a view as well.