UITextViewonを追加しようとしていUIScrollviewます。を に追加しUIScrollViewますUIView。scrollView の追加は機能しますが、 a へのUIView追加は機能しません。ポインタはありますか?UITextViewUISCrollView
ありがとう
UIScrollView * contentScrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(300, 400, 250, 250)];
contentScrollView.backgroundColor = [UIColor whiteColor];
UITextView * mainContent = [[UITextView alloc]initWithFrame:CGRectMake(300, 400, 200, 200)];
mainContent.text = @"HELLO";
mainContent.textColor = [UIColor blackColor];
[contentScrollView addSubview:mainContent];
[contentScrollView setUserInteractionEnabled:YES];
[contentView addSubview:contentScrollView];