我有一个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
答案 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中;