Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个应用程序来记录给定时间内的最大 G-Force 和最小 G-Force。我已经让加速度计工作并提供数据(每 0.1 秒更新一次)。我现在想在用户单击“记录”时存储此数据,并在用户单击“停止”时停止。我想要一个每 0.1 秒给出一个新行的数组。我怎样才能做到这一点?
NSMutableArray *recordsArray = [NSMutableArray array];
CMMagnetometerData *数据;
// where you get the data every 0.1 seconds [recordsArray addObject:data];