UIScroll ビューが機能しない理由がわかりません。私はちょうど iOS 開発を学んでおり、UIScrollView について説明したとき、スクロールに問題がありました。
スクロールを確認するためだけに新しいプロジェクトを作成しましたが、うまくいきませんでした。Xcode 4.6.2 で iOS 6.1 シミュレーターを使用しています。
これは私の.hファイルです:
#import <UIKit/UIKit.h>
@interface CDViewController12 : UIViewController<UIScrollViewDelegate>{
IBOutlet UIScrollView *scroll;
}
@end
and my .m file
#import "CDViewController12.h"
@interface CDViewController12 ()
@end
@implementation CDViewController12
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
[scroll setScrollEnabled:YES];
scroll.contentSize = CGSizeMake(250, 2000);
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)dealloc {
[scroll release];
[super dealloc];
}
@end
私は何を間違っていますか?