hi,
I am using a simple function to display messages to user through a label. The function is as follows:
-(void) showMessage:(NSString*) message {
Message.text = message; [message release]; }
There is no memory leak if I call this function from the main thread. But if I call this function from a separate thread, the instruments monitor shows a 16 byte memory leaks as soon as the function is called. The leak is not seen if I comment out the function call. Does anyone know why ? I am using iPhone SDK 3.0. The instruments monitor does not point to any of my functions to indicate the leak. It only shows a function or two from UILabel.