iOS UIScrollView in UIView
Create a UIscrollview IBOutlet in your (.h File)
@interface MyViewController : UIViewController {
IBOutlet UIScrollView *Scroll_View;
UIView *View;
}
@implementation MyViewController
- (void) viewDidLoad
{
[super viewDidLoad];
Scroll_view.contentSize = CGSizeMake(view(YOUR UIVIEW OR SOMETHING).frame.size.width, view_inner(YOUR UIVIEW OR SOMETHING).frame.size.height);
}
When you created a IBOutlet,you should connect to your UIScrollview and UIScrollViewDelegate;
Comments
Post a Comment