If I set the Base + Active SDK of an iPhone app to 3.0 and the Deployment Target to 2.2, can I use the new versions of functions on 2.2 devices?
For example, UITableViewCell
now requires an image to be set using [cell.imageView setImage:image]
, whereas in 2.2, you'd call [cell setImage:image]
. Will using the new [cell.imageView setImage:image]
crash on 2.2 devices?