I have an objective-C++ class which contain some honest C++ object pointers.
When the Obj-C++ class is destroyed does it call dealloc immediately? If so, then is the best way to destroy the C++ class by putting
delete obj
in the dealloc method?