Re: Can I generate a segue this way?

2018-06-07 Thread Rick Aurbach
Ben, Thank you so much! You were SO right. It’s actually rather interesting, because if I subclass UILabel and build the gesture recognizer into it, I don’t need to turn on the ‘user interaction’ setting, but if I use the “bare” UILabel class and attach a gesture recognizer in IB, I do.

Re: Can I generate a segue this way?

2018-06-06 Thread Ben Kennedy
On Jun 6, 2018, at 11:14 PM, Rick Aurbach wrote: > Working with a storyboard, I add a Tap Gesture Recognizer, connect it to the > label, and connect the segue to the gesture recognizer. I think I've set > everything up correctly, but tapping on the label does not trigger the segue. You might

Can I generate a segue this way?

2018-06-06 Thread Rick Aurbach
I have a situation where I want a user tap on a UILabel to generate a segue. (Yes, it sounds a bit strange, but it makes sense in context.) Working with a storyboard, I add a Tap Gesture Recognizer, connect it to the label, and connect the segue to the gesture recognizer. I think I've set