This repository was archived by the owner on Mar 16, 2019. It is now read-only.
This repository was archived by the owner on Mar 16, 2019. It is now read-only.
a bug on the 256GB iOS device #276
Closed
Description
function
df();
callback(@[[NSNull null], @{ @"free" : [NSString stringWithFormat:@"%d", totalFreeSpace], @"total" : [NSString stringWithFormat:@"%d", totalSpace] }]);
will callback the wrong value
callback(@[[NSNull null], @{ @"free" : [NSString stringWithFormat:@"%ld", totalFreeSpace], @"total" : [NSString stringWithFormat:@"%ld", totalSpace] }]);
it work fine!