-(IBAction) changeColOnClick:(id)sender
{
NSArray *colors = [NSArray arrayWithObjects:@"[UIColor brownColor]",@"[UIColor blackColor]",@"[UI greenColor]",@"[UIColor redColor]", nil];
self.view.backgroundColor = [colors objectAtIndex:i];
// ERROR::changebackground[1089:207] -[NSCFString CGColor]: unrecognized selector sent to instance 0x357c
//label.text = [colors objectAtIndex:i]; //i is defined in the implementation
i++;
if(i==[colors count]-1)
{
i=0;
}
}
-(IBAction) changeColOnClick:(id)sender
{
N