I need some help to get all photos from local storage and send those to server for Backup purpose. I am able to get those by using AssetsLibrary framework, but app got crash due to RAM memory usage. Is there any way to upload all my images to server and later based on time(Daily backup) I need to send only which are not uploaded earlier.
How to get all photos(>200) from device and send to server for Backup
85 Views Asked by Krishna Kanth At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in IMAGE
- Add image to JCheckBoxMenuItem
- Display images on Django Template Site
- How to resize images with PHP PARSE SDK
- Animation in Java on top of JPanel
- Slow performance on ipad erasing image
- What are the pros and cons of the picture element?
- Carrierwave file upload with different file types
- How to use annotorious with angular
- Images not showing when uploaded to server
- ImageView doesn't show up
- Image Resizing adjusts ratio
- Displaying bitmap image on Android (OpenCV)
- Class 'Imagick' not found - PHP and Windows
- Image position - randomly select position
- Replace image 1 with image 2 after 5 sec
Related Questions in BACKUP
- Need to create a simple script for ftp login
- Backup strategy for build tool hosted on Azure VM
- Error with Data Pipeline backup when I transfer my data from DynamoDb to S3
- Tablesnap not working
- Can WebDeploy Backup on Application Level Not the Whole Site?
- Cassandra restore from incremental backup files from multilple nodes
- How to avoid "use <database>" statement on mysqldump backups?
- Bash output limited to echo only
- Batch file to delete all folders in a directory except the newest folder
- CentOS6 - Backup all RPMs and installed programs
- Tar backup error
- What is the best file format to save dynamoDB table?
- Creating Backup and Restore where the Executable path in vb.net
- Daily and weekly backup strategies
- iOS Enable backup for file ONLY IF backup is encrypted
Related Questions in PHOTOS
- How to import images to android application?
- How can I add a gallery of photos to the Big Cartel NEAT Theme?
- Gmail save image programmatically
- How to send users a photo with Parse?
- Does the Photos access API in iPhone allow removal of photos from an application?
- UIImagePickerController photos shutter not opening
- How to get a list of user photo albums using the Facebook Graph API on Android
- Import photos from wesbite to an app
- Post Photos to Facebook Album in Order without moving album cover
- any existing protocol for accessing photos or pictures on a remote server
- How to write text on image in windows phone 8?
- iOS8 PhotoKit: when does [asset canPerformEditOperation:PHAssetEditOperationDelete] return false?
- Why do my blogger posts have blurry thumbnails on Facebook?
- How do I fetch only certain PHCollections?
- Sharing photo/video on "Photos" (Google Photos) doesn't work from Android app
Related Questions in ALASSETLIBRARY
- enumerateAssetsUsingBlock crash with SQLite error code 14
- Fetch path of the photo saved in ios photo library
- Memory Warning on fetching images from device photo library
- AssetLibrary not return all assets with "ALAssetsGroupAll"
- Adding multiple UIImages for Paging Enabled UIScrollView from ALAssetLibrary
- ios app crashes for some users when using ALAssetsLibrary to retrieve images in a UICollectionView
- Xamarin iOS ALAssetsLibrary WriteVideoToSavedPhotosAlbum doesn't save to library
- How can I comment ALAssetLibrary delegates
- Displaying image from asset library
- I am missing a step when writing code to retrieve IOS assetLibrary, but what am I missing?
- Delete images in camera roll from code iOS
- how to store photos and videos in Core Data?
- Get the Image (UIImage) using asset URL in iOS 7
- How to get all photos(>200) from device and send to server for Backup
- ios 8, how to get all photos using ALAssetLibrary to replace the missing camera roll album
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This require a well designing of 3 tier architecture of your app. Will give you a short info on how you can achieve it, But it requires an R&D and effort if you are working alone.
Step 1. Create a column in your local storage (sqlite or coreData) which will represent timeStamp.
Step 2. Create
Helperclass in order to do fetching and updating functionality. (usingdelegatesorcallbacks) something likeStep 3. If this is 2 way communication like, If server updates and you need to get updated image then write a method to do that too.
In order to get understanding of 3 tier architechture and Uploading multiple images and something about sync functionality