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];