0

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];

よろしくお願いいたします。

4

4 に答える 4

1

また、次のような間違いを犯しました。

  NSMutableDictionary *data = @{ @"value" : value, @"contentArray" : arrayData };

この問題を作成するのは非常に魅力的です。:D

于 2013-10-31T04:45:26.560 に答える
0

NSMutableDictionary は NSDictionary のサブクラスであり、その逆を試みています。

于 2013-09-13T17:33:15.203 に答える