我正在尝试学习如何使用 UIScrollView 并且似乎遇到了一个简单的障碍。
我能够创建一个空的 UIScrollView 构建并运行,它可以工作。然后我尝试添加图像,我可以让图像显示,但我无法滚动。
这是我的 viewcontroller.h 文件的代码内容:
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet UIScrollView *scrollView;
@end
在 viewcontroller.m 中:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize scrollView;
- (void)viewDidLoad
{
[super viewDidLoad];
[scrollView setScrollEnabled:YES];
[scrollView setContentSize:CGSizeMake(320, 500)];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
我通过界面生成器添加了 UIImageView。它嵌入在滚动视图中。图像的大小也大于滚动视图。这是屏幕截图:
当我构建和运行时,我得到了图像一部分的全屏视图,但无法滚动查看其余部分。关于为什么我不能滚动查看图像的其余部分的任何线索?