0

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

私は何を間違っていますか?

4

2 に答える 2

0

自動レイアウト プロパティを無効にしてみてください。ファイルインスペクターで、「オートレイアウトを使用」ボックスのチェックを外します

この助けを願っています!

于 2013-08-20T15:12:50.433 に答える
0

スクロール ビューのサイズが親ビューのサイズより大きくないことを確認してください。

于 2013-08-20T15:20:33.040 に答える