我正在像Tinder应用程序左/右刷卡。当我向左/向右滑动卡片视图而不是子视图移动奇怪。我正在使用ZLSwipeableViewSwift库。
func loadFront(){
if frontView == nil {
frontView = NSBundle.mainBundle().loadNibNamed("CardFront", owner: self, options: nil).first as? CardFront
self.addSubview(frontView!)
frontView?.frame = self.bounds
frontView?.hidden = false
}
}