0
votes
0answers
85 views

Save UIImage -> NSData to Core Data binary

I want to store an image I picked with the UIImagePickerController from the camera to CoreData. The column is a binary type with "Allows External Storage". The method I want to save: ...
1
vote
1answer
96 views

How to Save NSData to A Location Within my App?

Hi I'm very new to iOS programming (it's been literally 2 weeks) and I have this issue: In my app I take pictures and put them in a queue for upload, I still haven't implemented the upload part but ...
1
vote
1answer
71 views

En-Decrypt NSData with RNCryptManager over CoreData

I have never anything to do with data encryption, So i started to work with this code I had done anything, and it works all right if I encrypt some NSData and directly Decrypt the NSData. But it is ...
1
vote
3answers
71 views

Store and Manage Data for Simple App

I will make a simple game app which will store some data as user progresses in levels. For example: each level has a number of sub-levels, sub-level stores 3-4 properties (strings and arrays) ...
0
votes
1answer
40 views

iCloud public data possibility

I am developing a iOS/OS X application with a very "nice to have" feature: possibility to sync with non-iCloud clouds.(through web server in example). The app design already is completely based on ...
0
votes
0answers
107 views

Strange Core Data NSData issue (sometimes reporting length 65342 incorrectly)

I have seen a few logs that refer to an NSRangeException while processing an NSData pulled from a BLOB in my core data store. *** Terminating app due to uncaught exception \'NSRangeException\', ...
0
votes
1answer
178 views

Load image from file - save in core data - show image with bindings

I would like to load images from disk and add them to core data. I have an attribute set as transformable. I would like to get directions on how I should read the images and then add them to the ...
1
vote
1answer
120 views

How to save a UIImageView to a CoreData Database

What is the SIMPLEST way to save a UIImageView to a CoreData Database. I have tried this: Save: UIImage *image = imageView.image; NSData *imageData = UIImagePNGRepresentation(image); ...
0
votes
1answer
98 views

MP4 stored in CoreData as External Data Reference…how to get path?

I'm storing a MP4 file in CoreData as an "Allows External Storage" NSData attribute. How can I get a path string or NSURL to this data? Also, what happens if the mp4 file in under 1 MB and gets stored ...
0
votes
0answers
108 views

Why is my NSManagedObject Subclass not using my transformer?

the variables names here are just for the questions sake, not how they are in code, sorry for poor naming conventions. I have an NSManagedObject Subclass that holds a transformable property ...
0
votes
0answers
63 views

Displaying image from Core Data results in App Crash

I've spent hours trying to figure this out! I'm a newbie to xcode but have been making good progress but now stuck on this part. I believe I am saving my image to the binary field in core data. ...
0
votes
3answers
770 views

Store images in sqlite or just a reference to it?

I have made couple of apps using coredata and I was storing images in sqlite, but somewhere i found that it is bad. I've searched the net but all I've found is this suggestion: image size < 100kb ...
0
votes
1answer
289 views

Core Data: Sorting & Decrypting Value from a Transformable Field

I have some encrypted NSString store in a transformable field. I need to decrypt and list all value in alphabetical order. NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] ...
1
vote
1answer
1k views

How to save a (custom) NSObject in Core Data

In my application i have an custom NSObject, which contains 2 mutable Arrays. I need to save this custom NSOBject into a core data entity, but i have no real idea how i can accomplish that... After ...
0
votes
1answer
689 views

Storing NSImage and NSData in a Cocoa Core Data App

I am writing a Cocoa App to display a 2-d floating array. I now want to assign these images to an entity attribute in Core Data, so I use the transformable data type. The problem starts when I try ...
2
votes
0answers
286 views

How to save an image into Core Data (iOS5)

I have a Binary Data attribute set up in my entity (with Allows External Storage checked), and an image in my app bundle that I want to assign to it (test.jpg). What is the best way? ...
0
votes
1answer
323 views

iOS Saving Web Service Data to Device

My situation is that I have a universal app that talks to an sql database via odata. When the user retrieves data over the line I want to save that to the device so that if the user stops the app or ...
0
votes
3answers
1k views

Saving [UIColor colorWithPatternImage:image] UIColor to Core Data using NSKeyedArchiver

I'm unable to create an NSData object from a UIColor (with a pattern) created with the factory method [UIColor colorWithPatternImage:image] works fine for standard UIColor objects. Wondering if ...
0
votes
1answer
235 views

Storing images using CoreData but without using NSData

I use CoreData for storing images. Often these images are the same. I use bindings to setup a table view. One column contains the images. Now I don't always want to store the whole image data. I ...
0
votes
1answer
675 views

Binary Data in sqlite database versus Image in Applications Folder or Storing images from internet

I was just thinking what is the best way to keep images in IPhone/iPad (XCODE) application if I'm getting them from internet dynamically. My main concern is if I'm storing it in my database as Binary ...
0
votes
1answer
224 views

Convert Core Data to NSString

I want to create a backup function in my app iCollege (App Store). The data should be sended via email to any email address. I'm able to send it as attachement but I want to send it as a link. Is it ...
1
vote
1answer
473 views

Removing a NSData stored in CoreData

I saved a NSData (of UIImage) in an attribute of CoreData. There are still some other attributes under the same entity. How can I remove just the NSData stored, but not removing the whole ...
0
votes
1answer
293 views

Reading rtf information from entity entries to NSString

I have an entity (named Song) that one of the Attributes is binary data (a rtf field) that I use to to store chord charts or notes about a song. I need to be able to print this field along with the ...
0
votes
1answer
668 views

reading binary data (rtf) to string

I've been working on a core data program for a while now. I'm trying to combine attributes of an entity in a text view for saving to PDF and Printing. One of the attributes of the entity uses binary ...
1
vote
1answer
1k views

Truncated Core Data NSData objects

I am saving arrays of doubles in an NSData* object that is persisted as a binary property in a Core Data (SQLite) data model. I am doing this to store sampled data for graphing in an iPhone app. ...
2
votes
1answer
908 views

release NSData in NSManagedObject

I use datamodel to store 2 objects : Video, Images. Video contain just string attributes and Images have 2 "Binary data" attributes. At the start the 2 binary data attributes was in the video object. ...
1
vote
1answer
860 views

Needs solution to store XML as object or as such in iPhone Apps

I am a beginner to iPhone App development. Please help me out. In my iPhone application, I am making an API request and getting an XML. I have to parse it, store it in a object(or xml as such) and ...