make hyperlink

-- iOS (iPhone) 2012. 10. 15. 13:25
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
Creating a hyperlink in UITextView

UITextView *iView = [[UITextView alloc] initWithFrame: frame];
iView.text = @"this is http://www.roseindia.net link";
iView.editable = NO;
iView.dataDetectorTypes = UIDataDetectorTypeLink;

//cell is the TableView's cell    
[cell.contentView addSubview:iView];
[iView release];


Creating a Hyperlink in UIWebView

[iWebView loadHTMLString:@"<html><head></head><body style=\"font-family: sans-serif;\"> .... </body></html>" baseURL:nil];

'-- iOS (iPhone)' 카테고리의 다른 글

아이폰 배포 SDK버전 설정  (0) 2012.10.22
add right button (exit button) on navigator bar  (0) 2012.10.15
objective-c combine string  (0) 2012.10.15
get app version from info.plist  (0) 2012.10.15
iphone string 관리  (0) 2012.10.15
posted by 어린왕자악꿍