0

アクションシートの背景色を変更する必要がありますが、

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@""
                                                             delegate:self 
                                                    cancelButtonTitle:nil 
                                               destructiveButtonTitle:nil
                                                    otherButtonTitles:@"Create Estimate", @"Record Expense",@"Add Credit",@"Delete Customer", @"Cancel", nil];

    actionSheet.actionSheetStyle = UIActionSheetStyleDefault;
    actionSheet.destructiveButtonIndex=3;

    [actionSheet showInView:appDelegate.window]; // show from our table view (pops up in the middle of the table)
    [actionSheet release];

アクションシートの背景色の設定方法を教えてください。

4

1 に答える 1

1

投稿を参照してください: iPhone 開発: UIActionSheet の色付きまたは半透明の背景を作成するには?

それはあなたにとって役に立ちます。

ジム。

于 2010-05-05T12:23:29.137 に答える