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

Popular posts from this blog

Parse JSON from a file and showing data into UITableView

Parse JSON from a URL and showing data into UITableView