First of all, please keep in mind that I am a TOTAL beginner to programming, hence why I bought "iPhone and iPad Apps for Absolute Beginners."
I'm trying to create the first "Hello World" app in the book.
I copied the following code from the book which is in the ViewController.m class:
However, I'm getting seven errors when trying to run it.
Sorry for sounding like a complete idiot, but can anybody help me out?
I'm trying to create the first "Hello World" app in the book.
I copied the following code from the book which is in the ViewController.m class:
Code:
#import "hello_world_1ViewController.h"
@implementation hello_world_1ViewController
- (IBAction)hello:(id)sendr{
label.text = @“Hello World!”;
}
However, I'm getting seven errors when trying to run it.
Sorry for sounding like a complete idiot, but can anybody help me out?