Hallo Entwickler,
im IB habe ich ein UIScrollView erstellt.
Keine Scroll Indicators, Scrolling enabled, Paging enabled, Bounces enabled.
Alles anzeigen
Aber das Scrollen funktioniert einfach nicht, obwohl contentSize größer als das frame ist.
im IB habe ich ein UIScrollView erstellt.
Keine Scroll Indicators, Scrolling enabled, Paging enabled, Bounces enabled.
Quellcode
- NSArray *colors = @[[UIColor redColor], [UIColor greenColor], [UIColor blueColor]];
- for (int i = 0; i < colors.count; i++)
- {
- CGRect frame;
- frame.origin.x = svTutorial.frame.size.width * i;
- frame.origin.y = 0;
- frame.size = svTutorial.frame.size;
- UIView *subview = [[UIView alloc] initWithFrame:frame];
- subview.backgroundColor = colors[i];
- [svTutorial addSubview:subview];
- }
- svTutorial.contentSize = CGSizeMake(svTutorial.frame.size.width * colors.count, svTutorial.frame.size.height);
Aber das Scrollen funktioniert einfach nicht, obwohl contentSize größer als das frame ist.