Show a simple UIAlertView

    技术2022-05-20  30

    UIAlertView *myalert = [[UIAlertView alloc] initWithTitle:nil message:@"An Alert!" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

    [myalert show];

    [myalert release];


    最新回复(0)