Hi,
I am, as an enrolled developer into iPhone developer program, received a message from apple, requesting to make all applications to be compatible with iPhone os 3.0. It was said that they won't process applications that are incompatible with iPhone os 3.0
The issue is that if I change the code to work with iPhone os 3.0 it won't work on 2.2.1.
For instance sdk 2.2.1 doesn't support the following which is a necessity in sdk 3.0:
cell.textLabel.text = @"text";
In 2.2.1 I would write instead:
cell.text = @"text";
And it's not the only issue.
How do you handle this problem?
Thank you in advance.