添加项目时,UIScroll View不会滚动

时间:2012-10-31 20:09:14

标签: uiscrollview xcode4.3 xcode-storyboard

我有一个UIScrollView,当我运行我的应用程序时,滚动视图工作正常。当我在滚动视图中添加两个按钮时,在底部和另一个在顶部,滚动的能力消失了。我还没有给按钮调用任何动作。我只是想看一个动态的滚动视图

不确定为什么会这样。

这是我的代码。

.h

@interface ViewController : UIViewController {
IBOutlet UIScrollView *theScroller;
}

@end

的.m

@implementation ViewController

- (void)viewDidLoad
{
[theScroller setScrollEnabled:YES];
[theScroller setContentSize:CGSizeMake(320, 900)];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

@end

1 个答案:

答案 0 :(得分:0)

更改以下修改:

<强>·H

    @interface ViewController : UIViewController
{


   IBOutlet UIScrollView *theScroller;

}


@property(nonatomic,retain)IBOutlet UIScrollView *theScroller; // Add this Line

<强>米

**#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize theScroller;  // Add this Line

- (void)viewDidLoad

{
    [super viewDidLoad];


    [theScroller setScrollEnabled:YES];
    [theScroller setContentSize:CGSizeMake(320, 900)];
    [super viewDidLoad];

}

在您的XIB中;

  1. 设置代理并正确链接
  2. enter image description here