I'm sure there is an easy answer to this issue, but.....
I get the message "Receiver type "UIAlertView'
for instance message does not declare method initWithName
.H looks like this
#import1 <UIKit/UIKit.h>
@interface LoginUIViewController : UIViewController <UIAlertViewDelegate>
-(IBAction) LoginButton;
@end
.M looks like this
#import "LoginUIViewController.h"
@implementation LoginUIViewController
-(IBAction) LoginButton {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title"
delegate:self
message:@"message"
CancelButtonTitle:@"Cancel"
otherButtonTitles:@"Cancel",nil];
[alert show];
}