Is it possible to stikethrough a UILabel at all? I can\'t seem to find the option...
stikethrough
UILabel
You could create another UILabel above your label and use an en dash character:
label.text = @"––––––––––––––––––";
Caveat: works with Helvetica (system default). It may not work with other fonts.