If some remember I am trying to convert Intel to PPC. I have found the switches to turn to make it possible. However I have to convert some of the code from Objective-C 2.0 to 1.0
2.0 code:
1.0?? Is this the proper way??? Or do I have to set each value by itself?
I also want to know if there is anything else I need to change besides the way to add and read the array?
Would be great to know if there was a site that explained the difference between the two with help of the conversions. Any? Lastly how do I make a universal code?
Also will there be an issue with the interface if built in xcode 3.0?
2.0 code:
Code:
arrSelections1 = [[NSArray alloc] initWithObjects: cse211djq, wei408djq, arc118djq, cse211clq, arc118clq, hubatlabclq, nrng514clq, wei408clq, tur2215clq, arcatlabbwq, b105110bwq, cse211bwq, hscmdlbwq, hubatlabbwq, lawpclabbwq, lbw3radbwq, nrnatlabbwq, tur2215bwq, weiatlabbwq, nil];
1.0?? Is this the proper way??? Or do I have to set each value by itself?
Code:
my arrSelections1 = NSMutableArray->alloc->init;
arrSelections1->addObject(cse211djq, wei408djq, arc118djq, cse211clq, arc118clq, hubatlabclq, nrng514clq, wei408clq, tur2215clq, arcatlabbwq, b105110bwq, cse211bwq, hscmdlbwq, hubatlabbwq, lawpclabbwq, lbw3radbwq, nrnatlabbwq, tur2215bwq, weiatlabbwq);
I also want to know if there is anything else I need to change besides the way to add and read the array?
Would be great to know if there was a site that explained the difference between the two with help of the conversions. Any? Lastly how do I make a universal code?
Also will there be an issue with the interface if built in xcode 3.0?