Tagged Questions
0
votes
1answer
75 views
Compress Large UIImage
so what im doing is compressing an image repeatedly until it fits within a size frame. It it takes to many attempts, give up and later we tell the user the image is to large.
My issue is that after ...
0
votes
0answers
21 views
Creating my own Recording.data file similar to GLpaint
How to create my own recording.data file similar to Apple's OpenGL ES based GLPaint. As that application is showing pre-recorded "shake me" text , i want to show some other text when my application is ...
2
votes
2answers
64 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
0answers
35 views
Using a WiSnap device with iOS device, getting extra zeros with data
I am creating an app that sends data to a WiSnap/WiFly device. So far it sends the right data but it adds three zeros after each byte I want to send.
What I am trying to send is 15 bytes starting ...
0
votes
1answer
169 views
UIImage from NSData in UITableView - performance issue
I am storing images from Photos Album in my app documents directory as NSData and than displaying them in UITableView. I have problem with performance. It takes a good few seconds to save image into ...
0
votes
3answers
137 views
How can I convert BOOLs into bytes in Objective-C?
I have a series of data that can ultimately be represented as BOOLs. I want to convert these BOOLs into bytes so I can put them in an NSData object and send them over a network. I know that I can fit ...
2
votes
2answers
350 views
Loading UIImage from NSData causing jerky UITableView scrolling
I am having getting my tableview to scroll smoothly when loading in images from NSData.
Some background ... I'm storing image NSData in Core Data (using the 'allows external storage' option so i ...
1
vote
0answers
96 views
Send NSData back and forth between devices - GameCenter alternative
I am trying to build an application that will require sending data between two devices over the internet. Sort of like GameKit, but I would like to implement the function without GameKit as I want to ...
0
votes
1answer
246 views
Xcode converting special characters(NSString) to NSData [duplicate]
Possible Duplicate:
How to prepare an NSURL from an NSString continaing international characters?
I've an issue with converting special characters into NSData format.
NSString *strURL = ...
2
votes
2answers
186 views
Error Converting NSData to NSString
i save an image in Database. i am trying to get the image and export it into a CSV file.
I use following code to convert into string but it returns null.
int length = ...
0
votes
0answers
48 views
NSDocument with multiple objects
I have a document based app that is intended to retrieve a couple of mutable arrays and display them in table views. I also wanted to be able to load and save the data. Do I need a create a SINGLE ...
0
votes
0answers
35 views
How to specify Caching Behavior for high Level Function like [NSData dataWithContentsOfURL:url]
I downloaded a lot of data from the net.
Most of which are thumbnails. To save bandwidth and to prevent being blocked by google and save servers, I would like to cache most of those data. Not all. ...
2
votes
2answers
664 views
Xcode parsing RSS XML with images issue
I am trying to parse text with images in the UITableView and I can only see the text for every line but I can't see the images.
Here is my code;
- (UITableViewCell *)tableView:(UITableView ...
0
votes
2answers
189 views
Cache Image From URL working, but returns blank image?
I have two methods, first checks if I've already downloaded the image, and if not retrieves the image from a URL and caches it to my docs directory in my app. If it has been, it simply retrieves it, ...
1
vote
0answers
80 views
NSData stores the same information for differents NSURL
I'm doing a parsing of a XML and my problem begins when i want to store a NSData of an url needed for my parser. This URL contains the user and the password to authenticate (returns a XML), and in my ...
1
vote
1answer
88 views
Export Viewarray object textView text
I'm developing an app to create as many notes as you want, something like post-it's. I'm adding views and putting the into a viewArray
- (IBAction)add:(id)sender {
NoteViewController *noteController ...
0
votes
2answers
150 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)
{
...
1
vote
1answer
316 views
How can I get a PHP echo with NSURLConnection?
can I get some help? I'm desperate. I have a PHP script, it is sent parameters, it does some processing and then uses echo for outputting the result. I've used
[[NSString alloc] initWithData:[NSData ...
0
votes
0answers
33 views
NSData into UIWebView with MIME type [duplicate]
Possible Duplicate:
Correct way to load image into UIWebView from NSData object
I am having NSData downloaded from server for which i am having MIME type also. But i dont know how to load ...
0
votes
0answers
74 views
UIWebView showing only parts of saved html data
i'm working on a RSS feeder. When the app starts it downloads feeds and, with a queued operation, saves all the data from the url associated with every entry the feed produced using this routine:
...
0
votes
1answer
230 views
Convert NSData into Default MIME type
I have NSData received from server for which i don't know the MIME type.
Now i want to convert the NSData into any file like Image/Pdf without knowing the MIME/extension of that file and i want to ...
0
votes
1answer
171 views
Xcode NSdata Garbage
I am Working on a Network application ... but before sending it over the network i am testing my packing and unpacking of data ... but i am getting a lot of garbage values
myfield in a ui text field ...
1
vote
1answer
265 views
How to convert NSData that is encoded with AES256 to base64?
I am trying to convert an NSData object that has been encrypted with AES256 encryption to base64 NSData object. I am under the impression that I can not directly convert a NSData object that has been ...
0
votes
1answer
71 views
is it possible to convert a cpp model object to NSData
I am trying to pass a model object to a local server that i created. The model object is a cpp class. I need to convert it into data so that i could write it over the stream. When i tried to archive ...
0
votes
1answer
179 views
Loading stringWithContentsofURL that requires credentials
I am trying to parse an HTML page, but the page requires a username/password to access the data.
How do I pass the credentials to the server so I can load the webpage into my NSData object?
UPDATE ...
0
votes
1answer
78 views
How Reading From Files and URLs (.plist or .txt)
I need to read a file. plist or. txt from a url
for example.
http://www.nordenmovil.com/BuscadorTopTen/carros.plist
http://www.nordenmovil.com/BuscadorTopTen/texto.txt
NSString * path = @ ...
3
votes
3answers
109 views
How can I convert * )xÿª5c’√K’Rk¬É* to plain text in objective C?
Please check here is my code
int asciiCode = @"29 78 D8 BB 35 12 63 D5 C3 4B 18 D5 52 6B C2 83";
NSString *strings = [NSString stringWithFormat:@"%c", asciiCode];
NSLog(@"%c",strings);
}
if the ...
0
votes
1answer
116 views
Objective-C File Creation Error
I am making a simple command line tool where the user enters a username and password (I don't care about encryption
as this is only an exercise) and their age and this data is written to a file. This ...
0
votes
0answers
129 views
App crashes while retrieving data from file? [closed]
App running smoothly while using below line for fetching data of small size but for large file size>=150 it crashes unexpectedly on below line.
while debugging, I found that the compiler does not go ...
0
votes
1answer
311 views
Archived NSData, isEqualToData: and Empty Strings
I have a custom object containing several NSString objects, some ints and a few bools. I am using NSKeyedArchiver to archive a copy of the object into an NSData object.
The user than makes changes ...
0
votes
2answers
2k views
Convert NSData to byte array
I want to convert the NSData into byte array and given below is the code that i have used
NSData *imageData = UIImagePNGRepresentation(recipeImage.image);
NSUInteger len = [imageData ...
2
votes
2answers
2k views
How to automatic call function every x time [duplicate]
Possible Duplicate:
How to call function in every “X” minute?
How to periodically call a certain function?
- (void)viewDidLoad
{
[super viewDidLoad];
[self ...
0
votes
1answer
404 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 ...
1
vote
0answers
99 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 ...
0
votes
1answer
2k views
Multiform data send to server using iPhone sdk
I’ve been trying to follow some examples for uploading data to a website. I want to save the message as a .txt file. Any ideas what to do here?
- (IBAction)sendSerializedGreeting:(id)sender;
{
...
0
votes
1answer
499 views
Objective C HTML Request
I am just starting out in Xcode and wanted to try and make a simple app where you press a button and it creates a html post request and returns the html in a string i can't then fiddle with. I realise ...
2
votes
2answers
219 views
Declare as NSString but Xcode treat as NSdata & received incompatible passing
I'm trying to pass an NSString address object to a UILabel text, but I received a warning from XCode compiler about incompatible pointer, as shown in the screen shot below:
And from the screen shot ...
2
votes
1answer
439 views
NSData on custom class?
I am about to look into bluetooth interaction on the iPhone. Now, i read that the only object that can be transferred is an NSData object. Now, i wanna transfer my "character" objects. The class looks ...
1
vote
4answers
1k views
NSString from [NSData dataWithContentsOfURL:]
There is probably a really simple answer for this, but I can't seem to put my finger on it.
I am getting the contents of a web URL using (See Below)
NSData *data = [NSData ...
0
votes
1answer
348 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 ...
-1
votes
1answer
318 views
Getting NSData length zero? Error: Cocoa error 60
NSString *filePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:currentVideoDownload];
filePath = [filePath ...
1
vote
0answers
473 views
exif data in NSData image representation
I'm trying to create a PhoneGap plugin which uses AFFoundation to capture photos and return the image as base64 encoded string. This all works fine but the exif data seems to be missing from the ...
1
vote
1answer
973 views
Access information from Byte Array using its index
I am using a byte array to store Nsdata of(4840 bytes) and nnow i have to access the data at index of byte array.here is my code .
[Bufferdata appendBytes:&data length:len];
Byte *byteArray = ...
0
votes
2answers
743 views
iPhone, how does one read an image from the UIPasteboard as NSData?
I have an image that I append a message to inside the NSData of the image and then save it to the photo library using ALAssetLibrary. I then send it to someone over email.
I want to give the user the ...
3
votes
2answers
2k views
How do I convert HTML NSData to an NSString?
I'm using [NSData dataWithContentsOfURL:] to create two NSData instances and I want to compare these instances to gauge how different they are. Since they're both from the same website, using a string ...
7
votes
2answers
817 views
iPhone, how does one read an image from the photo library as NSData?
On the iPhone I saved an image to the photo library with modifications (appending data after the image code) using the assest library to save the NSData directly to the photo library. Now I want to ...
1
vote
4answers
927 views
NSString initWithData returns nil
I work with server. I send request to the server and it answers me in UTF-8 encoding, but when I try to decode byte array to the string, sometimes I get nil value. How can I decode this bytes array ...
0
votes
0answers
67 views
How does One place an image inside of an image using metadata?
For example, I can convert the second image into NSData and then place it inside metadata inside the first image and then when I open the first image and read the metadata I can get the NSData and ...
0
votes
1answer
684 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 ...
2
votes
2answers
7k views
How can i convert a NSData to NSArray? [duplicate]
Possible Duplicates:
How to convert NSArray to NSData?
Need to convert NSData to NSArray
HI,
I have a NSData object named as "myNsData"(it is converted form of NSArray)
and a NSarray ...

