When I try to create an instance of a custom class, using this code...
PlayerTurn *playerTurn = [[alloc] init];
...inside the definition of a method in my View Controller .m
file, I get this error:
"use of undeclared identifier alloc"
Can someone please explain!? I thought alloc-init was easy.