Can someone help me with this Issue/error I'm getting on my iOS app: Values of type 'NSInteger' should not be used as format argument; add an explicit cast to 'long' instead
My code in Viewcontroller.m (issue highlighted on first line):
NSString *imgName = [NSString stringWithFormat:@"button%iop_on.png",b.tag];
[b setImage:[UIImage imageNamed:imgName] forState:UIControlStateNormal];
activeButton = b;
[self performSelector:@selector(validate)withObject:nil afterDelay:ti];
Any help would be appreciated. Thanks