I\'ve tested it and it looks like it does. So my question is, does it ALWAYS increment the retain count.
So everytime I do something like this:
UIVie
Actually it does. You can refer this at http://developer.apple.com/library/ios/documentation/uikit/reference/uiview_class/uiview/uiview.html#//apple_ref/occ/instm/UIView/addSubview:
As a matter of course, the superView retains the subView on addSubview: , so it does release when removes the subView.