Burak
Burak

Reputation: 5764

EXC_BAD_ACCESS in UIApplicationMain

I am getting this error in line:

int retVal = UIApplicationMain(argc, argv, nil, nil);

Where can be the problem?

Upvotes: 0

Views: 1652

Answers (1)

Abizern
Abizern

Reputation: 150615

You're sending a message to a memory address of an already released object, most likely.

Such memory problems don't always show up at the point that the error occurred.

Have a look at turning on NSZombies as a first step towards finding the problem.

Upvotes: 2

Related Questions