hit counter

Timeline

My development logbook

Terminology in SplitView

Root View: the pane on the left when iPad is in Landscape mode Detail View: the main pane of display

EXC_BAD_ACCESS Resolved

It turns out I was trying to send release message to a NSArray instance which was created using the class method arrayWithObjects:

It is probably a wrong conclusion, but commenting out the line works.

EXC_BAD_ACCESS

Is it the equivalent of segfault in unix or NPE in java?

Anyway, having fun with it…

Abstract Base Class Support in Objective-c

Basically, there is no support of Abstract base class in objective-c.

The handling is similar to what you can do in python (pre-2.6): inside the supposedly abstract class method throws an exception.