1

それは言う

UIAlertView の目に見える @interface は、セレクター 'initWithTtile:message.... を宣言しません。

これは私が持っているものです-

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:[NSString stringWithFormat:@"Error %@, here is your error", [error description]] delegate: nil cancelbuttonTitle:@"Cancel" otherButtonTitles:nil, nil];
4

3 に答える 3

-1

メソッドが間違っていることを示しています

使用する

  UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Error"
                          message:[NSString stringWithFormat:@"Error %@, here is your error", [error description]]
                          delegate:self
                          cancelButtonTitle:@"Cancel"
                          otherButtonTitles:nil, nil];
于 2013-06-13T06:11:43.533 に答える
-1

initWithTtle はあなたのエラーに書かれています - Ttle ではなくTitleである必要があります

于 2013-06-13T06:12:32.050 に答える