1

初めて Objective-C を使用していますが、提供されたアプリケーションに奇妙なバグがあります。次の写真は、私が抱えている問題を示しています。

回転した画面の通常表示

この画面は、ユーザーが iPad を回転させると表示されます。これは正常です。上部のコントロール (<) を使用すると、ユーザーは左側のサブビューを非表示にできます。サブビューを非表示にすると、濃い青色の部分が拡大して画面全体に表示されます。アプリケーションで作業する前は、これは機能していました。今、これが起こっています:

スプリットビュー非表示時のバグ

なぜ、正確に、これが起こっているのかを説明するものは何も見つかりませんでした。何か案は?

- (void)viewDidLoad {

    [super viewDidLoad];

    [self addGestureRecognizers];


    // initialize the "<" button...

    toggleButton = [[UIBarButtonItem alloc] initWithTitle:[PanoUtils leftIndicator] style:UIBarButtonItemStylePlain target:self action:@selector(toggleScreen)];
    // the annotate button...

    annotateButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"Pencil.png"] style:UIBarButtonItemStylePlain target:self action:@selector(annotateTapped)];
    // the done button for annotations...

    doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneAnnotateTapped)];
    // a flexible spacer...

    nameFieldSpacerButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
    // the accelerometer button...

    alignButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"gyro.png"] style:UIBarButtonItemStylePlain target:self action:@selector(align:)];
    // and the search button.

    searchButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"Search.png"] style:UIBarButtonItemStylePlain target:self action:@selector(searchButtonTouched:)];


    // customize the align button after the user selects it.

    UIImage *buttonImage = [UIImage imageNamed:@"gyroSelected.png"];

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

    [button setImage:buttonImage forState:UIControlStateNormal];

    button.frame = CGRectMake(0, 0, buttonImage.size.width, buttonImage.size.height);

    [button addTarget:self action:@selector(align:) forControlEvents:UIControlEventTouchUpInside];

    alignSelButton = [[UIBarButtonItem alloc] initWithCustomView:button];



    NSMutableArray *itemsArray = [toolBar.items mutableCopy];

    [itemsArray addObject:searchButton];

    [itemsArray addObject:annotateButton];

    [itemsArray addObject:alignButton];

    [toolBar setItems:itemsArray animated:NO];

    [itemsArray release];



    [self adjustToggleButton];



}
4

0 に答える 0