I am a newbie, and trying to create a multiple-option quiz. I’ve created the options as labels, the structure is working so far.
I would like to have the label get highlighted upon tap..
I’ve tried changing the font color, etc… but nothing has worked so far.
Any help would be appreciated…
A
UILabelis not a subclass ofUIControlwhich gives you the inherited functionality that you want. You would be better of doing this with buttons as they are subclasses ofUIControl. You can make a button that appears just as text like you described above.