CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Parser GPX & TCX files for iOS application
Parse a GPX file:
NSData *fileData = ...
[GPXParser parse:fileData completion:^(BOOL success, GPX *gpx) {
// success indicates completion
// gpx is the parsed file
}];
Parse a TCX file:
NSData *fileData = ...
[TCXParser parse:fileData completion:^(BOOL success, GPX *tcx) {
// success indicates completion
// tcx is the parsed file
}];
Jelle Vandebeeck