Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my contents in UITextView...

==>"A ‘Metropolitan’ dining experience offering exquisite food prepared with attention to visual detail & taste."

Now my question is simple and short,how to find the location(x,y) of a word "experience" within the textview.

Any solution will be greatly appreciated.

share|improve this question
Similar to this stackoverflow.com/questions/8683848/… Hope its a same as what you wanted ! – Reefaq Jan 17 at 10:20
@Reefaq..thanks rafeeq,but the solution is hardcoded..i am sure with the use some calculation logic we can achieve it. – PKCoder Jan 17 at 10:27
2  
play with the codes then you can achieve it .. you can take that link as a direction to get your solution. – Reefaq Jan 17 at 10:47

1 Answer

up vote 1 down vote accepted

use sizeWithFont, it suppose to be something like this:

NSString *text = textView.text;
NSString *substring = [text substringToIndex:[text rangeOfString:@"experience"].location];
CGSize size = [substring sizeWithFont:textView.font];
CGPoint p = CGPointMake((int)size.width % (int)textView.frame.size.width, ((int)size.width / (int)textView.frame.size.width) * size.height);
share|improve this answer
1  
i am getting some float value for p.x...what does that p.x meant for? – PKCoder Jan 17 at 10:12
1  
p.x suppose to be the x coordinate of the text you want in the whole view. [substring sizeWithFont:textView.font].width is the x coordinate in the textview – shem Jan 17 at 10:15
1  
i am getting p.x=1368.000000,my UITextview width itself is 360.000.is there any calculation pending to find the exact (x,y) of the word? – PKCoder Jan 17 at 10:20
1  
does your UItextview is one liner or have couple of lines? – shem Jan 17 at 11:01
1  
I edited my answer, it might fit for your multiline text view. – shem Jan 17 at 11:43
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.