私のビューコントローラーのviewDidLoad
機能には、次のような人がいます:
UIScrollView *scroller = [[UIScrollView alloc] initWithFrame:self.view.frame];
scroller.contentSize = self.view.frame.size; // Tried w/ and w/o this
scroller.showsVerticalScrollIndicator = YES; // Tried w/ and w/o this
for (int x = 0; x < 10; x++) {
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, x * 100, 100, 100)];
label.text = [NSString stringWithFormat:@"%i label", x];
[scroller addSubview:label];
}
[self.view addSubview:scroller];
最初の 8 つのラベルは正常に表示されますが、スクロール ビューは表示されません... スクロールします。切り取られているだけです。理由はありますか?