0

これは私がしばらく取り組んできたトリッキーなものです。タブバーのあるビューに表示されるアクションシートがあります。アクションシートを閉じると、タブバーに「引っ掛かり」、何もできなくなることがあります。アプリを最小化してから最小化すると、アプリがクラッシュしません。戻ってきて却下されましたが、モーダル動作が適切に却下されていないようです。

最近、アクションシートの表示方法を「showInView」から「showFromTabBar」に変更しましたが、これが問題の原因であるかどうかはわかりません。

ありがとう、ウィリアム

編集:

以下は、アクションシートを閉じるために使用するコードです。

-(void)doneButtonPressed:(id)sender{



    if ([[self viewWithTag:1] isKindOfClass:[PickerView class]]) {

        PickerView *picker = (PickerView *)[self viewWithTag:1];

        if (picker.selectedRow == nil) {
            [picker populateSelectRowForRow:0 andComponent:0];
        }

        NSNotification *note = [NSNotification notificationWithName:@"doneButtonPressed" object:self.indexPath userInfo:picker.selectedRow];

        [[NSNotificationCenter defaultCenter] postNotification:note];

    }else {

        DatePickerView *picker = (DatePickerView *)[self viewWithTag:1];

        NSDictionary *extraInfo = [[NSDictionary alloc] initWithObjects:[[NSArray alloc] initWithObjects:[self formatDateToString:[picker date]], nil] forKeys:[[NSArray alloc] initWithObjects:@"value", nil]];

        NSNotification *note = [NSNotification notificationWithName:@"doneButtonPressed" object:self.indexPath userInfo:extraInfo];

        [[NSNotificationCenter defaultCenter] postNotification:note];
    }


    [self dismissWithClickedButtonIndex:0 animated:YES];
}

および呼び出される通知メソッド:

-(void)pickerUpdate:(NSNotification *)note{

    NSIndexPath *indexPath = [note object];
    NSDictionary *extraInfo = [note userInfo];

    NSDictionary *dict = [[tableController.sectionAndFields objectAtIndex:indexPath.section] objectAtIndex:(indexPath.row + kHeaderAndFooterOffset)];

    [tableController.formDetails setObject:[extraInfo objectForKey:@"value"] forKey:[dict objectForKey:@"key"]];

    NSArray *reloadArray = [[NSArray alloc] initWithObjects:indexPath, nil];
    [indexPath release];

    [self.tv reloadRowsAtIndexPaths:reloadArray withRowAnimation:NO];
    [reloadArray release];


}
4

1 に答える 1

0

私はなんとかこれを解決することができましたが、それはハックのように感じます、私は以下を使用してコードに遅延を導入しました:

[self performSelector:@selector(dismissFromActionSheet) withObject:nil afterDelay:0.2];

dismissFromActionSheetは次のとおりです。

-(void)dismissFromActionSheet{
 [self dismissWithClickedButtonIndex:0 animated:YES];
}
于 2011-01-13T09:59:38.550 に答える