I wrote a Cocoa Application and I got EXC_BAD_ACCESS error when I\'m closing an application window. I read that this error usually means problems with memory, b
EXC_BAD_ACCESS
With ARC you should use strong and weak instead of retain and assign.
strong
weak
retain
assign