, - , iOS WiFi, Unicode , .
NSString *strCellText = @"This row is selected";
NSString *strCheckMarkUnicode = @"\u2713";
NSString *strFinalText = [NSString stringWithFormat:@"%@ %@",strCheckMarkUnicode,strCellText];
NSMutableAttributedString *strAttributedText = [[NSMutableAttributedString alloc]initWithString:strFinalText];
NSRange range=[strFinalText rangeOfString:strCheckMarkUnicode];
[strAttributedText addAttribute:NSForegroundColorAttributeName
value:[UIColor blueColor]
range:range];
_cellOne.textLabel.attributedText = strAttributedText;
