Hello guys
I am getting this warning on iphone sdk.
this is the code:
- (IBAction)act1

id)sender{
int int1 = [text1.text intValue];
NSString *key;
NSString *array1[10];
if(int1 >=128)
array1[0]= '1'; //warning here
else
array1[0]= '0'; //warning here
key = [NSString stringWithFormat:@"%c%c",array1[0],array1[1]];
label1.text = key;
Anyone know what is going wrong here?