I am doing one project of handling task of the day like taking notes.
So i assign daily task to do and when task is done I want one line strike through the task name.
I am searching for the appropriate font-family that has this strike-through line but failed.
so please suggest me a .ttf font name for that so i can use that font in my project to fulfill my requirement.
|
|
||||
|
|
|
**OPTION 1** . If You want to strike through text in multiline mode: use TTTAttributedLabel create new TTTAttributedLabel.h and TTTAttributedLabel.m files (not from GITHUB, because I tweaked with single/double strikethrough feature) http://www.2shared.com/file/Z_qZpWVd/TTTAttributedLabel.html http://www.2shared.com/file/xXjmC-1M/TTTAttributedLabel.html and where you need a strikethrough label - use TTTAttributedLabel instead of UILabel. To set strikethrough =
To set doublethrough =
Add range where label text should be striked out + provide clickable link (nil , for no link):
P.S. - to properly reposition double strikeout lines - please edit TTTAtributedLabel.m file, at lines 483, 484 and 489, 490 (currently I changed upper line y-2 and lower y+2 from center. tweak that for better results.) . **OPTION 2** . Convert all string symbols to special strike-through characters. You can get them from this homepage: http://adamvarga.com/strike/ Then You can - for example, put necessary symbol translations in language file: "A" = "A̶"; "B" = "B̶"; "C" = "C̶"; "D" = "D̶"; "E" = "E̶"; "F" = "F̶"; "G" = "G̶"; "H" = "H̶"; .... and use this function, to turn normal Text string to striked out string:
for example:
*OPTION 3* I would also suggest trying this UILabel subclass mentioned here: underline text in UIlabel Hope that helps! |
|||||||||||
|
|
Use below code to stripe through the line:
|
||||
|
|
|
If you use another simple idea its work fine and also very easy.... just add another lable above your lable and lable code is
here which lable want you strikethrough font just give its frame to here and add this lable when your task is done Hope,this help you...... :) |
||||
|
|
|
Try this additions with TTTAttributedLabel.
|
|||
|
|