What is the difference between addSubview and insertSubView methods when a view is added programmatically?
addSubview
insertSubView
I don't think there is a difference. addSubview: is simple a convenient method for
addSubview:
[view insertSubview:aView atIndex:[view.subviews count]]