1

これを実行すると:

TaggedUIActionSheet *sheet = [[UIActionSheet alloc] 
        initWithTitle:nil
        delegate:self 
        cancelButtonTitle:@"Cancel" 
        destructiveButtonTitle:@"Delete" 
        otherButtonTitles:@"Save to photos",@"Email",nil];

次のエラーが表示されます。

Incompatible pointer type initializing TaggedUIActionAheet with an expression of type UIActionSheet

4

2 に答える 2

1

最初の行でエラーを見つけます。

TaggedUIActionSheet *sheet = [[UIActionSheet alloc]

次のようにする必要があります。

TaggedUIActionSheet *sheet = [[TaggedUIActionSheet alloc] 
于 2012-09-27T21:09:01.840 に答える
0

以下を試してください:

 UIActionSheet *Actionsheet =[[UIActionSheet alloc]initWithTitle:title delegate:delegate cancelButtonTitle:Canclebutton destructiveButtonTitle:destructivebutton otherButtonTitles:nil, nil];

[Actionsheet showInView:self.view];

-(void)Click_Button:(UIButton*)sender
{
    [self ShowActionsheet:@"Do u Want to Delete This Record!!!" Delegate:self canclebutton:@"Cancle" Destructivebutton:@"Yes"];
}
于 2016-02-04T05:36:23.403 に答える