검색결과 리스트
hyperlink에 해당되는 글 1건
- 2012.10.15 make hyperlink
글
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 |
RECENT COMMENT