Web services in iOS [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 10 years ago.
I have made one application for consuming web service using SOAP protocol on iOS device. Now i want to create such a application in which my iOS device should work as a web server for other devices.Is this possible ? if possible please give some guidelines or links to do this.

implementing web server as an iPhone app is explained in http://culturedcode.com/cocoa/ please refer to it
Also please refer to the answer to this question
IPhone app as a web server, any advice?

Related

Content from Website to iPhone App [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've been creating iPhone applications for the past couple of months, and one question has always crossed my mind: how does one go about creating an app like Instagram or some other application that lets users sign up and log in? I know how to do this with a website (SQL), but how do you do it on the iPhone? General answers are perfectly fine. Thanks!
The simplest approach: use UIWebView to wrap the website.
If you prefer using native UI, you can use JSON to communicate with the server for user login part.

support URL while uploading the app [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.
What should be the support URL while uploading the app on itunes? It is giving the warninig to fill the support url but I don't have the any idea about it. Can anyone help?
Thanks
The support URL should point to a website that you made to give support for your app. You can just make a quick website that is essentially a placeholder for your future support site but they want something or maybe just use a free blog where you give support information for your app. It doesn't have to be great for them to accept it.

Complete email client is possible or not in iPhone? [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 have to make an application of email client. is it possible to make an application that can manage different email addresses. In application we have to provide inbox for different id. I don't know how I'll connect to all servers. and how it will work? can anybody guide me?
This is really new for me thats why please don't mind if my question is silly
There used to be an app, remail, then open sourced by google: http://code.google.com/p/remail-iphone/
Also on the OneMail app website you'll find a list with the frameworks they're using: http://codev.co.uk/products/onemail/notice
I guess that it is possible, since it is an "stand alone" app and not an improvement to the native app.

Retrieve email id configured on iOS device [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.
Is this possible to retrieve email id configured on iOS device
if you intend to fetch the email id from native "Mail" application, it is not possible by any of the public APIs available through iOS SDK.
There is a project on GitHub which uses public API's from apple to achieve this. It is showing the leaks, so I don't know how long it is going to work.. I tried to find it, but I cannot find it so fast on my MacBook. If I find it, I will post you the link... But it's on GitHub for sure!

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.