Hello, i have a problem with scrollview:
when i use a UIview (uiview), add subview(scrollview) to it. then in my viewControler, i continue add subview (uiview) to viewController.
But problem is the scrollview did not work.
Can you explain it to me?
Thanks in advance.
Quote:
UIView *uv=[[UIView alloc] init];
[uv addSubview:scroll];
[self.view addSubview:uv];
|