-1

我正在尝试将 Scrollview 放在 viewcontroller 上?是否可以?我也想把 UIView 放在 ScrollView 上。

UIScrollView *scrollView =[[UIScrollView alloc]initWithFrame:CGRectMake(20, 60, 280, 200)];
    scrollView.contentSize = CGSizeMake(280, 200);
    scrollView.backgroundColor=[UIColor orangeColor];
    scrollView.delegate = self;
    [self.view addSubview:scrollView];

    UIView *container = [[UIView alloc] initWithFrame:CGRectMake(20, 60, 280, 200)];
    container.backgroundColor = [UIColor whiteColor];
    [scrollView addSubview:container];

在这段代码中,我尝试将滚动视图放在 VC 上,也尝试将 View 放在 ScrollView 上。

            rb1 = [[RadioButton alloc] initWithGroupId:@"first group" index:j];
            rb1.frame = CGRectMake(20,dy,22,22);
            [container addSubview:rb1];
            [rb1 release];

            label1 =[[UILabel alloc] initWithFrame:CGRectMake(50, dy, 60, 20)];
            label1.backgroundColor = [UIColor clearColor];
            label1.text = [answers objectAtIndex:j];
            [container addSubview:label1];

在这里,我尝试将单选按钮放在 View 上。

我希望很清楚:) 对不起我的英语不好。谢谢。

4

3 回答 3

0

在这里,您放置与滚动大小相同的内容大小:

scrollView.contentSize = CGSizeMake(280, 200);

在内容大小中,您应该输入要滚动的区域的大小。在您的情况下,滚动不需要滚动,因为可滚动区域与滚动视图大小相同。

于 2013-01-24T08:12:37.727 回答
0

试试这个把滚动视图放在控制器上

#import <UIKit/UIKit.h>

@interface YourClass : UIViewController {

IBOutlet UIScrollView *scrollView;

}


@property (nonatomic, retain) UIScrollView *scrollView;

@end

放 v/v 试试这个

   NSUInteger scrollContentCount = 0;

   for (NSUInteger arrayIndex = 0; 
         arrayIndex < [contents count]; 
         arrayIndex++) {


    // set scorllview properties
    CGRect frame;
    frame.origin.x = self.mScrollView.frame.size.width * arrayIndex;
    frame.origin.y = 0;
    frame.size = self.mScrollView.frame.size;

    myScrollView.autoresizingMask = YES;

    // alloc - init PODetailsView Controller
    myController = [[MyController alloc] initWithNibName:@"MyController" bundle:[NSBundle mainBundle]];

    [myController.view setFrame:frame];

    // add view in scroll view
    [self.myScrollView addSubview:myController.view];

    scrollContentCount = scrollContentCount + 1;
}

 // set scroll content size
 self.myScrollView.contentSize = 
CGSizeMake(self.myScrollView.frame.size.width * scrollContentCount, 
                     self.myScrollView.frame.size.height);
  }
于 2013-01-24T08:14:29.047 回答
0

当滚动视图的框架小于您的内容大小时,就会发生滚动。

您的框架大小为 (280,200),并且您为 contentSize 提供了相同的大小。

为了使滚动成为可能,请将下面的行替换到您的代码中。

scrollView.contentSize = CGSizeMake(300, 260);

于 2013-01-24T08:43:16.267 回答