Can I send argument with @selector in NSTimer? If I want to release NSTimer, are the following steps right in dealloc?
@selector
NSTimer
dealloc
Always, release is the last thing you do. Once you release something there is no guarantee it is safe to dereference the object, which means it no longer safe to send it ANY message.