Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 919477
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T18:33:05+00:00 2026-05-15T18:33:05+00:00

I would like add a this Apple example [AccelerometerGraph] the ability to store the

  • 0

I would like add a this Apple example [AccelerometerGraph] the ability to store the data in a file until the app isn’t closed. Without locking issues and other crappy problems of real time data collection.

Any idea, sample or something that a semi newbie can play with?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T18:33:06+00:00Added an answer on May 15, 2026 at 6:33 pm

    you could log the accelerometer data into an NSMutableArray as it hits and then when the app is being closed write that array to a file with:

    [array writeToFile:DataPath atomically:YES];
    

    just want to make sure you dont store every single entry or it could get large very fast. Do some checking on the timestamp in the acceleration object in

    - (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration 
    

    make it log every couple of seconds depending on how long you are going to be running it. (this method would probably not be wise to run for long lengths of time without throttling it, or doing some other array manipulations so that the entire array isnt held in memory through out the life time of the app)

    quick way to read the file you have written.

        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDirectory = [paths objectAtIndex:0];
        NSString *DataPath = [documentsDirectory stringByAppendingPathComponent:@"SOMEFILENAME"];
        NSMutableArray *array = [[NSMutableArray alloc] initWithContentsOfFile:DataPath];
    if([array count]<1){
    //do something with data
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to add cpuid functionality to my C# app. I found this
I have own project and i would like add for this class same as
I would like to add an item into a picture Library using c#. This
I have this edmx model (see below) and I would like to add an
I would like to know how to add menus similar to this to my
I'd like to add a keyword to my language. This keyword would only have
So as the description describes, I would like to add text to a file
I have a ListView and each item have a TextView. I would like add
I would like to add a GestureDetector to all views (view groups) of an
I would like to add a custom calculation method to a managed object (which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.