Lorsque j'essaie de compiler, je trouve un avertissement indiquant que l'initialisation fait pointer un entier sans un cast. Aucune idée pourquoi. J'essaie juste d'obtenir la taille d'un site Web.Problème lors de l'obtention de la taille du site Web Xcode
#import "Lockerz_RedemptionViewController.h"
@implementation Lockerz_RedemptionViewController
-(IBAction)startLoop:(id) sender {
NSData *dataNew = [NSData dataWithData:[NSData dataWithContentsOfURL:[NSURL
URLWithString:@"http://www.google.com/"]]];
NSUInteger *len = [dataNew length]; //error is here
NSLog(@"%@", len);
}