Monday, April 23, 2012

Remove current view in Scroll View


    for(UIView *subview in [stageScrollView subviews])
    {
        [subview removeFromSuperview];
        NSLog(@"Subviews Count=%d",stageScrollView.subviews.count);
    }

    [stageScrollView removeFromSuperview];