SumsApp
A smart notepad that finds numbers in your text and shows the total.
Use โSumsAppโ to quickly jot down:
Quotes and estimates
Shopping or to-do lists
Expenses and daily spending
Anything with numbers, freestyle
Put notes into folders to see combined totalsโperfect for trip budgets or tracking categories.
Advanced search lets you filter and total exactly what you need.
No spreadsheets. No calculators. Just type and total.
How the SumsApp Keyboard Works
Just copy and paste your bank statement โ done in seconds.
Big day, smart budget ๐โจ
Step-by-Step Guide to Tracking Expenses with SumsApp
SumsApp Privacy Policy
SumsApp does not collect any data. All notes remain on your device unless you export it. If you enable iOS versionโs iCloud sync, your data will be copied to your iCloud drive, which no one but you has access.
For Developers
iOS version supports URL scheme. Send text by using notally:// URL scheme. Below is a sample code.
NSString *encodedText = [stringForClipboard stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]];
NSURLComponents *components = [NSURLComponents componentsWithString:@"notally://"];
NSURLQueryItem *newnoteQuery = [NSURLQueryItem queryItemWithName:@"newnote" value:encodedText];
components.queryItems = @[newnoteQuery];
NSURL *url = components.URL;
UIApplication *ourApplication = [UIApplication sharedApplication];
if ([ourApplication canOpenURL:url]) {
[ourApplication openURL:url options:@{} completionHandler:^(BOOL success) {
//
}];
}