I have a UIView object and I add it as a subview it using [self.view addSubview:mySubView];. Afterwards I call
[mySubView removeFromSuperview]; and then I try to do [mySubView release]; but app crashes here.
Does RemoveFromSuperview also call release on mySubView?
Please post your code, else its difficult to answer
Crash code
Code Without Crash
You simply do not release things that you have not explicitly allocated or retained yourself.