我建立了一個滾動視圖,它並沒有一直滾動到底部我的XIB設置在我的XIB的一半大小,所以它會工作,但正如你可以看到的代碼應該工作,除非我做錯了什麼?iOS的滾動查看不滾動一路?
viewcontroller.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController {
IBOutlet UIScrollView *scroller;
}
@end
viewcontroller.m
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController
- (void)viewDidLoad
{
[scroller setScrollEnabled:YES];
[scroller setContentSize:CGSizeMake(320,910)];
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
什麼是框架的'UIScrollView'的高度和你調整它以適應兩種不同的屏幕尺寸? – SeanT
這是否使它更清晰?它只是不會一直滾動到底部,並且考慮到在主屏幕上較小的框架的高度,而不是在該viewcontroller.m中設置以使其滾動。 https://pbs.twimg.com/media/BOMH3D2CMAARTf0.jpg:large – Charlotte
我想我們可以更好地幫助你,如果你發佈你的滾動視圖的原點座標和框架尺寸。滾動視圖應該佔據屏幕上的整個可見空間嗎? – SeanT