ModalViewController not presenting on button press?

The first thing I thought of is that you are creating a leaked object at this line.

The first thing I thought of is that you are creating a leaked object at this line: self. MyModalVC = MyModalViewController alloc init; self. Will retain myModalVC, alloc will also retain it and you are probably releasing it only in dealloc method.In all other means the code looks quite working.

But looking at how you are using self. Prefix, maybe you've got a memory issue somewhere else in your application? Try reading about properties and accessor methods.

Thank you for your input. However this is not a memory issue. The alloc I'm releasing at the end of the function and the property in the dealloc method of my class.

And since I have no double free crashes or leaks popping up I think I'm safe. – Totumus Maximus Nov 4 at 14:27.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions