2012-02-08 15 views
1

UITextViewにあるテキストコンテンツをコピーして貼り付けることを許可しています。太字のタイトルテキストと、アンボールドされた通常のテキストが続きます。単一のすべてのコピー/ペーストが太字のタイトルテキストと非ボールドのコンテンツテキストの両方で機能するようにUITextViewを設定する方法はありますか?UITextViewでのシンプルなテキスト書式設定

現在、私は別のUITextViewを追加すると、それは太字スタイリングが、これは/選択-すべてをコピー/ペースト操作を選択し必要としています:

txtView = [[UITextView alloc] initWithFrame:CGRectMake(0,60,280,300)]; 
[txtView setFont:[UIFont fontWithName:@"ArialMT" size:14]]; 




txtView.text = word.definition; 


txtView.editable = NO; 
txtView.scrollEnabled = YES; 
[txtView scrollRangeToVisible:NSMakeRange([txtView.text length], 0)]; 
txtView.minimumZoomScale = 1; 
txtView.maximumZoomScale = 10; 

UITextView *wordTitle = [[UITextView alloc] initWithFrame:CGRectMake(0, 10, 320, 50)]; 

[wordTitle setFont:[UIFont boldSystemFontOfSize:14]]; 
wordTitle.text = word.term; 
wordTitle.textAlignment = UITextAlignmentCenter; 



[detailsViewController.view addSubview:wordTitle]; 
[detailsViewController.view addSubview:txtView]; 

[txtView release]; 
txtView = nil; 

[htmlView release]; 
htmlView = nil; 

[scrollView release]; 
scrollView = nil; 


[[self navigationController] pushViewController:detailsViewController animated:YES]; 
[detailsViewController release]; 

答えて

0

私はのUIWebViewを使用し、HTML文字列を渡すことによってこれを解決しましたように:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 

    //...more code here 

    NSString *htmlDefinition = [word.definition stringByReplacingOccurrencesOfString:@"\n" 
                    withString:@"<br />"]; 

    NSString *htmlString = [NSString stringWithFormat:@"<h2>%@</h2><p>%@</p>",[word term],htmlDefinition]; 

    [htmlView loadHTMLString:htmlString baseURL:nil]; 

    scrollView.contentSize = [htmlView bounds].size; 

    [scrollView addSubview:htmlView]; 

    [detailsViewController.view addSubview:htmlView]; 
    [htmlView release]; 
    htmlView = nil; 


} 
関連する問題