Salve sto seguendo una guida ma arrivato qui mi da un worning il codice del libro e non capisco
Mi sapreste dare qualche consiglio?
#import <Cocoa/Cocoa.h>
#import "Somma.h"
int main(int argc, char *argv[])
{
int numero =2;
NSString *stringa =[NSString stringWithFormat:@"il valore del numero è%i",numero];
NSRange subRange;
subRange = [stringa rangeOfString:@"a"];
NSLog(@"La parola valore inizia alla %i lettera ed è lunga %i",subRange.location, subRange.length);
return 0;
}
Il worning appare sulla riga dell'NSlog e dice
Values of type 'NSUInteger' should not be used as format arguments; add an explicit cast to 'unsigned long' instead