Xcode での私の警告:
Incompatible pointer types initializing 'NSMutableDictionary *' with an expression of type 'NSDictionary *'
このコードの場合:
NSMutableDictionary* dict = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithLongLong:byteCount],@"bytes",
[NSNumber numberWithLong:fileCount],@"files",nil];
[dict writeToFile:countsPath atomically:YES];
よろしくお願いいたします。