2013-05-05
展开全部
2楼的方法可能没有那么理想,其实不一定非要被点击就要用UIButton束缚,可以自己用UIView去自定义一个UIView,通过手势去判断是点击还是长按
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-05-05
展开全部
UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom]; [btn setFrame:CGRectMake(240, 27, 60, 60)]; [btn setImage:[UIImage imageNamed:[NSString stringWithFormat:@"4.png"]] forState:UIControlStateNormal]; [btn addTarget:self action:@selector(butonPress:) forControlEvents:UIControlEventTouchUpInside]; UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(pressedLong:)]; [btn addGestureRecognizer:longPress]; [self.myScrollView addSubview:btn];
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询