views:

816

answers:

1

Is it possible to stikethrough a UILabel at all? I can't seem to find the option...

+3  A: 

iPhone doesn't support attributed strings (which is usually the way you'd do this in Cocoa), so I don't believe it's possible.

You could subclass UILabel and draw the strikethrough yourself. I've also seen some people use a UIWebView to do this type of thing, but that seems like overkill to me.

zpasternack
Thanks, bit rubbish though! blimin Apple!
Lee Armstrong