Ethan Wu

Results 1 issues of Ethan Wu

我这里的情景是我需要储存的model文件的字段比较多, 当我从服务器拉下来数据以后在数组遍历数据并储存。 ``` for (NSInteger i = 0; i < database.count; i++) { NSDictionary *dictionary = database[i]; DeviceBluetoothSetting *model = [DeviceBluetoothSetting mj_objectWithKeyValues:dictionary]; [model bg_saveOrUpdateAsync:nil]; } ``` 但是在 BGTool.m 文件的 1026行...