ios - 错误 : Stopped workout session cannot be restarted
<p><p>我可以开始和停止 <code>HealthKit</code> 锻炼类(class)。但是当我在第一次停止后尝试开始第二次锻炼时,我收到错误:</p>
<blockquote>
<p>"workOutSession Error : Stopped workout session cannot be restarted"</p>
</blockquote>
<p>如何在不关闭并重新启动应用程序的情况下开始下一个 <code>锻炼 session </code>(在第一次停止之后)?我正在使用 <strong>Xcode 7.2,</strong> <strong>IOS9.2</strong>
和<strong>观看 OS 2.1</strong></p>
<p>从 InterfaceController 停止:</p>
<pre><code>func startWorkout() {
myExtensionConnectivity.startSession()
myExtensionHealthKitManager.startWorkout()
myExtensionConnectivity.sendStartUpdatingCommand()
}
func stopWorkout() {
myExtensionConnectivity.sendStopUpdatingCommand()
myExtensionHealthKitManager.endWorkout()
myExtensionConnectivity.stopSession()
}
</code></pre>
<p>来自 HealthkitManager:</p>
<pre><code>func endWorkout() {
healthStore.endWorkoutSession(workoutSession)
}
func startWorkout() {
healthStore.startWorkoutSession(workoutSession)
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要在开始第二次锻炼之前创建一个新的 HKWorkoutSession 实例。如错误消息所述,您不能重新启动已停止的 session 。</p></p>
<p style="font-size: 20px;">关于ios - 错误 : Stopped workout session cannot be restarted,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34373387/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34373387/
</a>
</p>
页:
[1]