I want to ask a question about the objective C on iPhone. I want to upload a file (actually I store all the data in a NSString) to a server. However, I have not idea of how to do, I have checked the website of the Apple Developer, and I know there are a function called connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:, but it seems wrong. Can anyone help me and provide some sample code to me? Thank you very much.
I found this is the answer
http://cocoadev.com/index.pl?HTTPFileUpload
Related
I need to create an iOS app that needs to use a form created with GetResponse.
Does anyone know if the integration between the two systems is possible and if there is any documentation or example about it?
Thanks in advance.
Massimo
Please, try start there: http://apidocs.getresponse.com/en
If you need some further directions, just post question here :)
I have an app that I need to get the source code to update the app. Customer doesn't have source code, only the app file from apple store. Is there any tool or method to get it?
Thanks
You cannot decompile an iOS app to get the source code. Once it is submitted to the store, even the dSYM file is stripped, so errors don't provide the source code context. I'm afraid you are out of luck.
As #Richard J. Ross III has mentioned, there are tools that may help you get the assembly, but you will never be able to get the actual source code back. Depending on the detail of the app, you may just want to rewrite the application.
This may help you:
https://www.youtube.com/watch?v=0RLoNRmvT3Q
P.S: I found it on the internet, it's not mine.
I'm trying to edit some mp3 ID3 tags in objective-c. So far I haven't managed to get any further then when I started. I have had a look at the tagLib but I can't seem to get it into my project. Well, I don't know which files I have to add. A tutorial maybe?
Using apples AudioFileSetProperty() also didn't work. I was able to read the tags though but when writing i got this error: pty?. I am not the only one with this problem: stackoverflow.com
So does anyone know an "easy" ID3 library? It doesn't need to be Objective-c only as I am developing for the Mac.
Thanks!
I am going to tackle this soon myself.
What I plan on using is AVFoundation. This is for 10.7 or greater, that is the one downfall.
Otherwise you just export a session to an AVURLAsset. Will post more as I get into this.
I am new to iPad programming. Can anybody tell me how to convert xml file to html file using xslt in iPad . I have read other posts related to this question but i am not able to get the proper answer. Do i have to use any library for it, how to import these file to my objective c code and how to process it.
Thanks in advance.
Check this question it has a similar discussion which might help you to explore more,
Alternative to NSXMLDocument on the iPhone for XSLT purposes
Krio
This link is worth exploring too!
http://ditchnet.org/aquaxsl/
I want to ask a question about the objective C. I have create a .csv file and I want to upload to a server. However, I have no idea on how to do it. Can anyone provide any example or library for me to do? Thank you very much.
I think you will have an easier time doing this with ASIHTTPRequest, specifically, take a look at this sample code that shows how to upload a file.
Then, for actually initiating the request, take a look at creating an asynchronous request.