Jochen Pfeiffer

Results 23 comments of Jochen Pfeiffer

My first guess would be that some UIGestureRecognizer is catching the tap.

You could try to replace the action button with a regular `UIButton` and see if the the action is fired on a normal tap. Otherwise I would need to see...

Maybe you are right, and the table view is somehow causing problems. Is the button a subview of the table view? [EDIT] saw that it's not.

you could remove the tap action ``` actionButton.removeTarget(actionButton, action: nil, for: .touchUpInside) ``` and handle the opening and closing of the button yourself.

If you didn't explicitly switch it off it should be there. Otherwise it sounds like a bug. There is currently a problem if you put the action button in some...

A known issue is that the action button doesn't play nicely if added to a table view. Could you try not using a UITableViewController but a standard UIViewController with a...

You can tap anywhere on the gray area to close the action button. But maybe dragging could be another option.

I'll look into this once I have a bit more time. Might be some days though.

This is will need some restructuring. I will need to think a bit more about how to solve this.