-
Notifications
You must be signed in to change notification settings - Fork 0
ScrollView in Code Objective C 0
Azmal Tech edited this page Dec 27, 2016
·
2 revisions
-
UIScrollView *scrollview = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
-
NSInteger viewcount= 4;
-
for(int i = 0; i< viewcount; i++) { .
-
CGFloat y = i * self.view.frame.size.height;
-
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, y,self.view.frame.size.width, self .view.frame.size.height)];
-
view.backgroundColor = [UIColor greenColor];
-
[scrollview addSubview:view];
-
[view release];
-
}
-
scrollview.contentSize = CGSizeMake(self.view.frame.size.width, self.view.frame.size.height *viewcount);
-
[self.view addSubview:scrollview];