Questions tagged [carekit]

CareKit is Apple's framework that includes core modules for developing apps that help people better understand and manage their health. Modules available in CareKit: Care Card, Symptom and Measurement Tracker, Insights, Connect, Care Plan Store and Document Exporter.

The CareKit framework is used to develop apps that help people better understand and manage their health by creating dynamic care plans, tracking symptoms, connecting to care teams, etc.

The CareKit framework offers core modules that includes:

  • Care Card for displaying care plans
  • Symptom and Measurement Tracker for monitoring symptoms and tracking objective measurements
  • Insights for surfacing health tips and visualizing trends
  • Connect to engage care teams and family members as partners in your health journey
  • Care Plan Store for storing care data that the view modules use (built on top of Core Data)
  • Document Exporter to export care data to PDF or HTML

Quick Reference:

28 questions
0
votes
0 answers

Build a stack of segmented views

I was looking at the official Apple Healthcare documentation, when I noticed that they have a really nice UI design that I've also seen in other apps. I attached the photo to this post. As you can see, on the left, they have a stack of organized…
user18457910
0
votes
1 answer

Is the Carekit data corrupted?

I am sending the data collected by carekit to firebase. The date in firebase(ex.updateDate) is float. Cloud Firestore: {"updatedAt":"2021-07-11 06:28:22.420435…
0
votes
1 answer

Why can't I subclass 'OCKSurveyTaskViewController' from CareKit?

Note: I tried posting on the apple developer forums 2 days ago and didn't receive any responses as well I've been literally stuck on this portion of my project because I want to mirror the way apple has their care view setup for displaying tasks to…
kazinaBk2
  • 1
  • 2
0
votes
0 answers

Code signing "ResearchKit.framework" failed

I have created an app that uses ResearchKit and CareKit. When I upload my archive to App Store Connect, it tells me that Code signing "ResearchKit.framework" failed. What should I do?
0
votes
1 answer

Ambiguous reference to member OCKCarePlanActivity 'assessment

Using Xcode 9.4, Swift 3 and CareKit framework 1.2.1 Error Message: Ambiguous reference to member OCKCarePlanActivity 'assessment (withIdentifier:groupIdentifier:title:text:tintColor:resultResettable:schedule:userInfo:thresholds:optional:)' Here…
JIANG
  • 1,687
  • 2
  • 19
  • 36
0
votes
1 answer

Apple CareKit not able to navigate to OCKCareCardViewController

I am trying to implement basic functionality in Apple CareKit Framework. But i am not able to navigate to OCKCareCardViewController. Please find my code here on Github https://github.com/sandesh271991/CareKitDemo Please guide me where I am doing…
New iOS Dev
  • 1,937
  • 7
  • 33
  • 67
0
votes
1 answer

Can we merged ResearchKit and CareKit project into one project?

I want to merge Research Kit open source sample into Carekit open source sample. What is the possible way to perform this into a single project? Is this possible??
0
votes
1 answer

CareKit/ResearchKit NSInvalidArgumentException

I am getting the following error when trying to return ORKOrderedTask.timedWalk CODE: static func walkingAssessmentTask() -> ORKTask { return ORKOrderedTask.timedWalk(withIdentifier: "Walking", intendedUseDescription: "", distanceInMeters:…
luii
  • 319
  • 3
  • 5
  • 16
0
votes
1 answer

Can OCKCarePlanStore queries in Apple's CareKit be run off the main queue?

On GitHub, the documentation for CareKit includes a sample app called "Sample". Within Sample, the file QueryActivityEventsOperation.swift includes a line of code with the following comment: // [CK] OCKCarePlanStore query…
Bill Nattaner
  • 774
  • 7
  • 15
0
votes
1 answer

Im getting an error using timed walk test in research kit

Im using timed walk from researchkit test in an app that uses carekit as well. However, I have no idea why I am getting this error. Any help would be greatly appreciated. This is what I have so far. (error states Use of unresolved identifier) …
0
votes
2 answers

Initializer for conditional binding must have optional type

I don't understand why I am getting this error. I don't see anything wrong with the code. Please help!! Thanks! guard reason == .completed else { return } ***guard let symptomTrackerViewController = symptomTrackerViewController***, let event…
0
votes
1 answer

Apple CareKit symptom code in swift doesn't save data to CareStore

The following code was working partially. It display the question step and form. User was able to enter data, but when user click done nothing get save to care store and the display is not updated. Any idea? class SymptomsVC1:…
CK8
  • 347
  • 7
  • 22
0
votes
1 answer

Creating charts with multiple parameters in CareKit

The default CareKit implementation creates a chart with just two parameters to compare and contrast. Is it possible to use all parameters in the chart to enable a user to compare and contrast the progress of different parameters simultaneously. I'm…
Anushk
  • 482
  • 4
  • 20
1
2