我正在尝试将 Scrollview 放在 viewcontroller 上?是否可以?我也想把 UIView 放在 ScrollView 上。
UIScrollView *scrollView =[[UIScrollView alloc]initWithFrame:CGRectMake(20, 60, 280, 200)];
scrollView.contentSize = CGSizeMake(280, 200);
scrollView.backgroundColor=[UIColor orangeColor];
scrollView.delegate = self;
[self.view addSubview:scrollView];
UIView *container = [[UIView alloc] initWithFrame:CGRectMake(20, 60, 280, 200)];
container.backgroundColor = [UIColor whiteColor];
[scrollView addSubview:container];
在这段代码中,我尝试将滚动视图放在 VC 上,也尝试将 View 放在 ScrollView 上。
rb1 = [[RadioButton alloc] initWithGroupId:@"first group" index:j];
rb1.frame = CGRectMake(20,dy,22,22);
[container addSubview:rb1];
[rb1 release];
label1 =[[UILabel alloc] initWithFrame:CGRectMake(50, dy, 60, 20)];
label1.backgroundColor = [UIColor clearColor];
label1.text = [answers objectAtIndex:j];
[container addSubview:label1];
在这里,我尝试将单选按钮放在 View 上。
我希望很清楚:) 对不起我的英语不好。谢谢。