Pages

Monday, August 19, 2013

Error Message In Xcode

hi i have recintly got Xcode for my computor and i am learning how to use the code. I am lerning form "tuturial for Xcode app" and copyed the code over for the first app i made there is a error message and i can not fix it. Here is the code and error

 

 

//

//  ViewController.m

//  First Program alart iphone

//

//  Created by Jennifer Sheridan on 18/08/13.

//  Copyright (c) 2013 Oscar Winter. All rights reserved.

//

 

#import "ViewController.h"

 

@interface ViewController ()

 

@end

 

@implementation ViewController

 

-(IBAction)sayhello:(id)sender{

   

    UIAlert View *alert = [ULAlert alloc]

                           initwithtitle:@"hello message"

                           message:@"hello There everyonr"

                           delegate:self

                           cancelbuttontitle:@"ok"

                           otherbuttontitles:nil];

   

        

                          

   

}

 

 

- (void)viewDidLoad

{

    [super viewDidLoad];

  // Do any additional setup after loading the view, typically from a nib.

}

 

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

@end

 

 

if you have any idear please post a responcie

 

thanks

 

osky4


View the original article here

0 comments:

Post a Comment