我在向视图中添加tapRecognizers时遇到了一些问题。 我将未知数量的事件,新闻和优惠券添加到我的UIScrollView,点击我想打开详细视图。但是,点击该应用程序崩溃时出现以下错误
Almhults_appen.MainActivity redirectFromHomeScreen:]: unrecognized selector sent to instance 0x7f93c2d4df20
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Almhults_appen.MainActivity redirectFromHomeScreen:]:
在我看来,我可以使用UITableView并添加所有视图。但是如果可能的话,我个人希望避免它,但是因为我是Swift的新手,所以我不相信我的判断。
if (!event_ar.isEmpty) {
for event: Event in event_ar {
... Init EventView and add to UIScrollView
// Add tapGesture
let tapGesture: UITapGestureRecognizer = UITapGestureRecognizer(
target: self,
action: "redirectFromHomeScreen:"
)
eventView.addGestureRecognizer(tapGesture)
}
}
if (!news_ar.isEmpty) {
... Add news identically to events
}
if (!coupon_ar.isEmpty) {
... Add coupons identically to events
}
修改添加的动作功能
private func redirectFromHomeScreen(sender: UITapGestureRecognizer) -> Void{
... Do stuff
}
提前致谢:)
答案 0 :(得分:0)
您必须将手势添加到要点按的视图中。添加它的最佳时刻是在该视图的viewDidLoad方法中。使用Objective-C,我就这样做了,效果很好。
- (void)viewDidLoad
{
[super viewDidLoad];
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(PanToFlipPage:)];
[self.view addGestureRecognizer:pan];
}
答案 1 :(得分:0)
根据您的崩溃报告..首先您需要声明功能
func redirectFromHomeScreen (sender : UITapGestureRecognizer){
}
声明并重试
答案 2 :(得分:0)
在创建所有子视图和按钮后尝试添加这些行。
[self.view setNeedsLayout];
[self.view layoutIfNeeded];