0

Everything is in the title, I doesn't understand what the statement below does:

#import "x.h"
#import "y.h"
#import "MyAppAppDelegate.h"
#import "z.h"


@implementation x

@class myClass;

Could someone explain me using simple words please? I'm quite new to iphone programming :s

awlcs
  • 606
  • 2
  • 13
  • 31

1 Answers1

3

Simple Words: It tells the compiler, that there will be a Class named myClass and not to warn you about an unknown class if not really necessary.

Complex Words

Community
  • 1
  • 1
Martin Brugger
  • 3,168
  • 26
  • 20