sometimes it be like that
Are you running the current version of iOS? Are you signed into iCloud, and do you have storage enabled?
Just do a screen capture instead.
You could also try copying the link, then paste into a new browser window before you save. If you try to save a photo from some websites like Flickr like that, they won’t let you do it if the owner of the photo limits usage rights.
(NSCocoaErrorDomain512)
Try “Bosco”
Or “Ovaltine”
Otherwise, I got nothing.
How do you right-click on an iPad?
What are the properties of the file you’re trying to save: jpg, gif, png?
This may help.
About Imported Cocoa Error Parameters
Learn how Cocoa error parameters are converted to Swift throwing methods.
On This Page
Overview
See Also
Overview
In Cocoa, methods that produce errors take an NSError pointer parameter as their last parameter, which populates its argument with an NSError object if an error occurs. Swift automatically translates Objective-C methods that produce errors into methods that throw an error according to Swift’s native error handling functionality.
Understand How Error Parameters Are Imported
Swift examines Objective-C method declarations and translates them into Swift throwing methods, with shorter names when possible.
For example, consider the removeItem(at:) method from FileManager. In Objective-C, it’s declared like this:
- (BOOL)removeItemAtURL:(NSURL *)URL
error:(NSError **)error;
In Swift, it’s imported like this:
func removeItem(at: URL) throws
Notice that the removeItem(at:) method is imported by Swift with a Void return type, no error parameter, and a throws declaration.
If the last non-block parameter of an Objective-C method is of type NSError **, Swift replaces it with the throws keyword, to indicate that the method can throw an error. If the Objective-C method’s error parameter is also its first parameter, Swift attempts to simplify the method name further, by removing the WithError or AndReturnError suffix, if present, from the first part of the selector. If another method is declared with the resulting selector, the method name is not changed.
If an error producing Objective-C method returns a BOOL value to indicate the success or failure of a method call, Swift changes the return type of the function to Void. Similarly, if an error producing Objective-C method returns a nil value to indicate the failure of a method call, Swift changes the return type of the function to a nonoptional type.
Otherwise, if no convention can be inferred, the method is left intact.
Note
You use the NS_SWIFT_NOTHROW macro on Objective-C method declarations that produce an NSError to prevent it from being imported by Swift as a method that throws.
Best Buy geek squad subscription is worth the $100 a year. Some kid will most likely fix it for you and explain how it works or if its because you storage is full they can fix that too
As the alien said to Betty Hill: If you don’t know where you are on the star map, what good would it do to show you where I am from?
I envy your use of the Ipad for 3 years without knowing much about it, but I think it’s time to get the geek squad subscription.
YOU CAN CALL APPLE AND THEY WILL YELL YOU HOW TO FIX IT.
OR, AT LEAST THEY ALWAYS WOULD!
Steve Jobs says you don’t NEED to save internet pictures on you Apple products.
Are you logged on? Is your machine plugged in to recharge?
Try saving the picture as a different filename than the one you’ve been choosing. If you can’t try saving it to your Desktop and then move it to the folder where you want to save it.
The problem is caused by creating a directory with the name of the image, then trying to write a file in place of the directory. In other words, you are first creating a directory named:
Documents/girl.png/
then you try to write a file to the path:
Documents/girl.png
Step 1. Drive to a nearby park, waterway or lake.
Step 2. Gaze upon the beauty of the landscape.
Step 3. Gripping your Ipad tightly, spin around and around like a discus thrower and hum that discombobulated dysfunctional piece of junk into the water and watch it sink.
What VeniVidiVici said in reply 28
You may not be able to save the image from your google search. Use the link in your search to go to the page where the pic originated and try saving from there.
If the pic is not on that link anymore, it could be why you can’t save it.
Be glad it is not an error massage.
It means the app you are using is doing something wrong. If it is Chrome, uninstall it and then reinstall from the App Store.
I can’t help you with this problem, but as a non-tech savvy person, I have found that the best place to learn how to do things with my phone or with my notebook is on YouTube. You can find great people explaining and demonstrating using words even I can understand.