The following constant is deprecated in iOS 4.2
ADBannerContentSizeIdentifier320x50
So for an app that is already released will this be a problem in future OS versions.
In iOS 4.2 they introduced
ADBannerContentSizeIdentifierPortrait
If I want to support both iOS 4.0 and iOS 4.2 how should I go about it.
You'll have to put in checks whether the constants are available or not. Here's one solution
develop on lastest iOS target, but set deployment target to 4.0 at your project's build settings and all targets.