NathanがURLマッピングやリンクについて語っていることに加えて、CSSスタイルを使用することもできます。あなたがのUIWebViewを使用していないのはなぜ
TTStyledTextLabel* label = [[[TTStyledTextLabel alloc] initWithFrame:someFrame] autorelease];
NSString* labelText = @"This should <a href=\"custom-uri://some/url\">work</a> and
<span class=\"redText\">this should be red</span>";
label.text = [TTStyledText textFromXHTML:labelText lineBreaks:NO URLs:YES];
[someView addSubview:label];
は、その後、あなたのStyleSheet.mに
- (TTStyle*) redText {
return [TTTextStyle styleWithFont:[UIFont systemFontOfSize:12] color:RGBCOLOR(255,0,0) next:nil];
}
を実装しますか? WebViewでリンクをクリックすると、UIWebViewDelegate getStartLoadWithRequestメッセージ – oxigen