我是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。
有可能吗?