track a guest user's actions on my iPhone [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 9 years ago.
Is it possible in iPhone if we can track users actions? Like which applications he has opened, sent messages or calls etc.
Thanks

Simple answer: no
Apps cannot access the usage information of different apps.
There is a (work arround) solution by implementing a Proxy-App, which provides a proxy server and registers this proxy server in the preferences. All network data would pass that proxy and your Proxy-App could send usage statistics to your server.
However, you can only track network traffic, not other usage statistics. Moreover, this App would never pass the App Review process...

Related

In Xcode is there a way to determine website traffic? [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 9 years ago.
I am wondering if there was some API or some kind of tool to use to determine a website traffic for Xcode.I need to track other websites traffic.
There is no way to retrieve exact traffic information for a web site that you do not control, unless that web site publishes traffic information to a public location. Most web sites do not do this.
Some services are available online which will estimate web site traffic, such as Alexa. This data is not exact, and is only available as a paid service.

I am building a real time collaboration tool where user can keep multiple conversation at the same time [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.
So I needed some kind of thread handling for this requirement. I went through XEP-0201 and found it useful, but I am not able to find any XMPP server and client that implemented XEP-0201.
Please let me know if anybody has used/wrote the XEP-0201 or if there is some other mechanism in XMPP so that I can handle multiple threads.
You won't find servers that support XEP-0201 - it's purely a client thing. Clients add the <thread> element to messages, and the recipient will receive it. The XEP is about general best practices around how to use that mechanism.

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.

Realtime Notification System [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 want to implement my own realtime notification system (like facebook - when someone in my friends list comments on/likes my status, I'm notified about that)
I just want to know which technologies are best suited for such problem domain.
Thanks
It used to be AJAX, then there is now Comet. Just then, there is also HTML5 Web Sockets.
But i guess what is prevalent to your situation at present may be solved by Comet.
Its called pushed notification.
AJAX can be used in a pull notification manner, i.e. browser periodically checks the server for updates. Comet is for push notification, i.e. server sends updates to the browser.
Web Sockets is only relevant in HTML 5 enabled browsers.

Receiving text and email [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 need to know if it is possible to develop an application to read and reply to SMS and email. If so, how could this be done (what library/class needs to be used). I've searched all apps there isn't an app that does this. There's only an app that requires you to set your email and constantly checks for new message however SMS I'm not sure if there's an app that does this thereby I'm not sure if it could be done. Thanks,
Regards,
Heba
Without a jailbroken iPhone, no. You can't interact with the other native applications beyond what the APIs provide (i.e. accessing the photos and media library). Like the other e-mail application, you could fake the e-mail situation by requiring them to provide you their servers and credentials. However, you really can't access the SMS history nor respond to them.