Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Change string color with NSAttributedString?
Use something like this (Not compiler checked) NSMutableAttributedString *string = [[NSMutableAttributedString alloc]initWithString:self.text.text]; NSRange range=[self.myLabel.text rangeOfString:texts[sliderValue]]; //myLabel is the outlet from where you will get the text, it can be same or differeRead more
Use something like this (Not compiler checked)
See less