この問題には簡単な答えがあると確信していますが、.....
インスタンスメッセージがメソッド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];
}