how getback source code file of app? [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have an app in my iPhone. Now i want to get source code of that app.My mean that how get source file of app? what is the processor so that i get information of app which is in my iphone?

You cannot. If you wrote the application, hopefully you didn't delete the source code... if it isn't, it's not yours to look at.

If this app was made with xcode then you canot get the source off the app as its compiled to a native binary format, the only possible way is to disassemble but you have to be a good knowledge of assembly language to understand the code.
If this app was made with another tool maybe it can be possible but I dont think it would be easy.

Related

cannot find DIOSConfig.h file in my XCode project [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
We are working on making an iphone app for a drupal website. We want to use XML-RPC for communication.
We have added the DIOS sdk and AFNetwork library into a XCode project. According to two tutorials I viewed, the next step is to modify a file called DIOSConfig.h and give the url of the drupal services function in that file. But I cannot find that file.
Will I have to enter the url in a different file?
You need to modify Settings.h file
Refer to this link https://github.com/workhabitinc/drupal-ios-sdk

OCR like Auto Cheat application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am intending to write a simple OCR engine for iPhone like "Auto Cheat" application which scans game board of "words with friends". How should I go about doing it? Are there any source codes available for me to use and alter it according to my need? I am a newbie to this OCR thingy. Pls help.
Thanks
You need to check out OpenCV for iPhone. This question: Tutorial for iPhone OpenCV on shape recognising, has some links that will help you out. Keep in mind if you have never worked with OpenCV before this is not a easy project to start with. Good Luck!

how to Include another application in my application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
In my application i was supposed to include/access/bring another application which is installed in iPhone. I don't have the source code for the other application. I googled several references which says that i should include the source file of another application without ticking copy options. but the problem here is i don't have the source file of the application.
If you're hoping to "embed" another application so that it appears to be part of your own then you're going to be out of luck (i.e. this cannot be done) without the source.
If you'd like to launch another application (say facebook) then you can use URL schemes, there's a good reference here: http://wiki.akosma.com/IPhone_URL_Schemes
If you have something else in mind you'll have to rephrase the question as others have already said, it's not entirely clear.

How to make connectivity between sqlite3 file and iphone application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
i am working on a application which needs connectivity with database i had create database and import it successfully but i dont know how connect it with code can any help me?
Let me google it for you.
http://dblog.com.au/iphone-development-tutorials/iphone-sdk-tutorial-reading-data-from-a-sqlite-database/
http://www.icodeblog.com/2008/08/19/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-1/
The sqlite framework is available on the iPhone, you first need to import it (it's called libsqlite3.0.dylib).
Bear in mind that it's all in C so you have to be comfortable with that.
There are already many tutorials on the Internet on how to use it in an iPhone application.
If you'd rather go the Objective-C way, there is an excellent wrapper around the sqlite C API for the iPhone called FMDatabase: https://github.com/lightory/fmdb
Also, you could have a look at Core Data which, again, will do most of the nasty tasks for you.

how to check application installed application in iphone deveice using iphone sdk [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am developing an application in which i need to find the apps which are already installed in iphone device such as Skype, facebook. I need to check it using objective -c . Please give me code snippet if possible otherwise a link to get the solution. Is it possible or not.
Thanks in advance ......
Not directly possible using the SDK. If an application you're looking for registers a URL scheme that it can open, then you can check for the presence of that app using the UIApplication -canOpenURL: method, as documented here.
This is not possible using any public API's.