-1

この問題には簡単な答えがあると確信していますが、.....

インスタンスメッセージがメソッドinitWithName"Receiver type "UIAlertView'を宣言していないというメッセージが表示 されます

.H は次のようになります。

#import1   <UIKit/UIKit.h>

@interface LoginUIViewController : UIViewController <UIAlertViewDelegate>

-(IBAction) LoginButton;

@end

.M はこんな感じ

 #import "LoginUIViewController.h"

@implementation LoginUIViewController

-(IBAction) LoginButton { 

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" 
                                                   delegate:self
                                                    message:@"message"
                                          CancelButtonTitle:@"Cancel"
                                          otherButtonTitles:@"Cancel",nil];
    [alert show];
}
4

1 に答える 1

0

方法はinitWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:. パーツはその順序で指定し、大文字を含めて正しく綴る必要があります。

于 2012-10-11T14:30:21.957 に答える