从屏幕上绘制的内容中查找框架或位置

时间:2012-05-19 13:02:34

标签: iphone ios core-graphics

我是ios核心图形的新手。 我有一个像

这样的字符串
NSString *str = [NSString stringWithString:@"Hi Guys How are you ? Just visit the http://www.apple.com and if not satisfied then go to http://www.google.com and Again if you visit http://www.msn.com"];

现在我使用

绘制了上面的字符串

[str drawInRect:CGRectMake(0.0f,40,300,200)     withFont:[UIFont systemFontOfSize:fontSize]         lineBreakMode:UILineBreakModeWordWrap     对准:UITextAlignmentLeft];

它在屏幕上画得非常精细。我想找到我所绘制的位置 http:// www.apple.com

基本上我需要找到已经绘制了http://www.apple.com的地方的框架? Bcoz我需要检测上面的URL,当用户点击上面的URL时,我想在网页中找到该URL。

有可能吗?

0 个答案:

没有答案