我有一个按钮,该按钮已添加到 UILabel 中,并且 UILabel 正在添加到 UIView 上,最后 UIView 已添加到滚动视图中。
这是我的代码:
nextBtn=[UIButton buttonWithType:UIButtonTypeCustom];
nextBtn.frame=CGRectMake(250, 8, 26, 26); //2626
[nextBtn setImage:[UIImage imageNamed:@"disclosure1.png"] forState:UIControlStateNormal];
[nextBtn addTarget:self action:@selector(nextBtnClkd) forControlEvents:UIControlEventTouchUpInside];
[reviewLabel addSubview:nextBtn];
[middleView addSubview:reviewLabel];
[mScrollView addSubview:middleView];
[self.view addSubview: mScrollView];
现在 nextBtnClkd 方法不会在按钮单击时被调用。
请帮我。
谢谢
本