Tagged Questions
2
votes
2answers
95 views
Retrive image from nsdata NSInvalidArgumentException', reason: '-[UIImage length]
i add image in NSMutableArray than i convert it in NSData and agaun i store that image in other NSMutableArray. But when i convert back to image that give me Error
my Code is
NSData *Puzzleimage;
...
2
votes
2answers
57 views
Add UIImage to NSMutableArray
I have a problem with a piece of code that should add images to a NSMutableArray. For some reason the images are not added (the count of the array stays at 0). Can someone please tell me what I'm ...
0
votes
2answers
138 views
NSMutableArray shows some hex content instead of actual values [duplicate]
Possible Duplicate:
NSMutableArray Not showing actual values when NSLog in iphone application
I have NSMutableArray initialised as follows:
- (id)init
{
self = [super init];
if (self)
{
...
0
votes
0answers
92 views
How to insert an NSData object containing multiple strings to an NSMutable object
I'm receiving an NSData object containing multiple strings and I would like to know how to insert these string in an NSMutableArray separately. I suppose the InsertObject function does not work since ...
0
votes
4answers
264 views
NSUserDefaults with Custom object that has an array of custom objects
I have an object that I convert into NSData using an NSKeyedArchiver and then store it into NSUserDefaults. Everything gets saved correctly except for the elements of an array that the object has. All ...
0
votes
1answer
327 views
Data Attached in E-mail?
My NSMutableArray data are in NSData formate.I am trying to attached NSMutableArray data to E-mail body.Here is my NSMutableArray code:
NSUserDefaults *defaults1 = [NSUserDefaults ...
0
votes
3answers
162 views
Data Attachement in E-mail?
I save my objects in NSMutablearray in NSData formate.No i am try to attached in E-mail Body.here is code.
- (IBAction)sendEmail
{
if ([MFMailComposeViewController canSendMail])
{
...
0
votes
1answer
392 views
NSMutableArray Data Attachement With E-mail Body?
My NSMutableArray data are in NSData formate.I am trying to attached NSMutableArray data to E-mail body.Here is my NSMutableArray code:
NSUserDefaults *defaults1 = [NSUserDefaults ...
0
votes
1answer
237 views
Trouble converting NSData to NSArray
(void) connection:(NSURLConnection )connection didReceiveData:(NSData )data
{
[self.receivedData appendData:data];
// convert data to array
// ??? the below is not working
NSMutableArray ...
1
vote
0answers
95 views
merging and unmerging uiimages
I would like to know the best way to merge (for lack of a better word) many UIImages together, so that I can send them in an email or upload them to Dropbox as one file, and then be able to un-merge ...
1
vote
1answer
466 views
Can't get NSData into NSMutableArray
I have an array of objects that I want to save as a file and reload back into my app. It's saving the file (with some data inside) but I can't get it to read back into a NSMutable Array.
The objects ...
0
votes
1answer
826 views
NSKeyedArchiver cannot archive arrays
I am trying to develop a Cydia tweak, but now I have some problems.
I want to copy an NSMutableArray, so I use:
myArray = %orig;
NSMutableArray* myArray2;
myArray2 = myArray;
NSData* data = ...
0
votes
1answer
495 views
iPhone:Convert NSMutableArray to NSData with stored & retrieved issue
I am facing a problem, that is to convert NSMutableArray into NSData and stored & retrieved that array into rootviewcontroller so please give me idea. Here is the code I'm working with:
...
1
vote
1answer
611 views
How to initialize NSData Object with NSMutableArray?
In my iphone app, I have an NSMutableArray which i want to store into NSData.
I am not finding a way with which I can do so.
What should be done??
Please help and suggest.
Thanks.
0
votes
1answer
563 views
Object changes from NSMutableArray to NSData to NSString
I have a program which works normally. Then I downloaded some code from http://github.com/matej/MBProgressHUD to show a progress meter when doing something.
This is the code that makes the progress ...
0
votes
1answer
6k views
is it possible to save NSMutableArray or NSDictionary data as file in iOS?
i want to save NSMutableArray or NSDictionary to save as file and close application.
then reopen application and read some data from that file to use.
is it possible?
0
votes
2answers
3k views
NSKeyedArchiver archivedDataWithRootObject:
Is the parameter for NSKeyedArchiver archivedDataWithRootObject: supposed to be the array I am trying to save, or the array converted into NSData?
0
votes
2answers
447 views
Is NSMutableArray writeToFile recursive?
Does NSMutableArray support recursive serialization? E.g. will a NSMutableArray of NSMutableArray's serialize the entirety of the heirarchy out when calling writeToFile?
Example:
NSMutableArray ...
5
votes
3answers
4k views
Storing CLLocationCoordinates2D in NSMutableArray
After some searching, I got the following solution :
ref: http://stackoverflow.com/questions/1392909/nsmutablearray-addobject-with-mallocd-struct
CLLocationCoordinate2D* new_coordinate = ...

