TMDDelegate Protocol Reference
Conforms to | NSObject |
---|---|
Declared in | TMDDelegate.h |
Overview
Use the TMDDelegate to be notified of success or failure after starting or stopping the TMD.
– didStart
Indicates that the TMD service started without errors (it started actively monitoring user motion)
- (void)didStart
Declared In
TMDDelegate.h
– didNotStartWithError:
Indicates that the TMD service could not start because of an error
- (void)didNotStartWithError:(NSError *)error
Declared In
TMDDelegate.h
– didStop
Indicates that the TMD service stopped without errors (it stopped monitoring user motion)
- (void)didStop
Declared In
TMDDelegate.h
– didStopWithError:
Indicates that the TMD service stopped with an error (it stopped monitoring user motion)
- (void)didStopWithError:(NSError *)error
Declared In
TMDDelegate.h
– didStartAnalysing
Indicates that the TMD service started analysing data (because the user started moving)
- (void)didStartAnalysing
Declared In
TMDDelegate.h
– didStopAnalysing
Indicates that the TMD stopped analysing data (because the user stopped moving)
- (void)didStopAnalysing
Declared In
TMDDelegate.h