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をタップすると、WebページでそのURLを見つけたいと思います。
出来ますか?