notally
I recommend to watch above videos in full screen. Tap playlist button to skip.
please back up your data
I strongly recommend to back up your data frequently. For privacy concerns, I have no access to any of your data and cannot recover it for you. To back up your data, open Settings and export CSV. My personal recommendation is to do this daily and save .csv file to your iCloud Drive.
notally Privacy Policy
notally doesnβt collect any data. All notes remain on your device unless you export it. When you use iCloud sync, your data is treated the same manner as you allow Apple.
For Developers
You can send text to notally 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) {
//
}];
}