HTML5 and Mobile Website Development [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.
HTML5 is said to be the future of web. My question is based on the features that HTML5 provides like Offline Access, Local Storage, Input Forms, etc , is the focus been almost entirely on Mobile Website Development ?
E.g. An Offline Caccess would practically make sense only for Mobile or Tablet devices and not really on desktops.
Similarly for many HTML5 form features..
Also which mobile browser has the highest support for HTML5 features ?
Please suggest.

"Best" is subjective.
HTML5 form features such as placeholder are useful for every platform.

E.g. An Offline Caccess would practically make sense only for Mobile or Tablet devices and not really on desktops.
How about laptops? Offline Gmail or Google Docs seems like it could be handy on a long plane flight.

Related

Screen Sharing between iPhones [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 want to share the screen between two iPhone using local network but unfortunately i have not seen any tutorial or help from any where can anyone guide how can I implement this?
The scenario is as follows:
I have installed my Application on two iPhones: iPhoneA and iPhoneB. iPhoneA is act like Server and send the request to iPhoneB to share it's screen as iPhoneB accept the request the screen of iPhoneB will start monitoring on iPhoneA. iPhoneA can only view the screen, and cannot do anything else.
Few ideas as starting point,
You could look into AirPlay ability. You can easily share your iPhone screen with a Mac connected screen using AirPlay, maybe that could be used to do it between two iPhones?
There was an app for streaming music similar to AirPlay (whose name I can't remember) Maybe that could help
ZeroC Ice framework can be used for streaming. I've managed to get it to work for Android but have no experience with their iOS product Ice Touch

using API's instead of HTML in 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 developed a app which has lot of UIWebView displaying HTML data. One of a Sr. app developer suggested me not to use HTML, instead asked me to use API's. Can one let me know how to use it? and any tutorials or suggestions to use it?
You Can Use 3rd Part API which Will be Better For Creating Application.Also Apple will not accept it if its only webviews Bundled as an App (See the Apple app store Review Guidelines 2.12 ). I can Advise you to use any One between Corona, Phonegap And Titanium. If you dont know what is best for you then Have a look at prviously Answered Post: Comparison between Corona, Phonegap, Titanium

input to third party iphone app from another app or url [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 want to populate few fields in third party iphone apps with the desired values.
is there any way i can achieve this.
Can a CORE DATA file be used for this.
Each app is run in its own private environment, so no two apps can interact with each other. This is by design and necessary for security/consistency/etc reasons.
Check out these Apple RuntimeEnvironment Docs.
Maybe, but only if the 3rd party app has been run before yours on the same device, and has registered a custom URL handler for the purpose of populating fields. Or perhaps if the app downloads these fields over the network from a server with a public API for configuring the fields.
Not otherwise, as the iOS security sandbox will prohibit this communication between apps.

application slow on iphone with phonegap [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.
We testing our app on simulater is fast but slow on iphone.
We are initializing canvas for drawing and try to draw multiple line on the canvas is very slow.
The simulator runs using the full power of the machine it is running on, it is not an emulator. That's why you can't trust it all the way through a project - every app must be test run on an actual device.
Although this isn't what you have asked for: Don't use phonegap. Please. It employs web technology to make development easier, but web technology is just not as performant as a native application would be. If you need to do extensive graphics operations, consider developing a native app.
Aside from not actually asking a question, you need to consider that the iphone has a much slower processor than what ever you're running the simulator on.

how can i create a google talk like 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 create a system that allow my site users talk talk to each other. simple like google talk.
i tried google talk but they just allow people to talk to their google firends and not to their friends on my website.
so what am i supposed to do. where should i start and what language do i need to use?
or in another way, how can i stream audio directly from the users microphone to the other user and at the same time stream the other users voice to the one in this side?
i looked in google and i couldnt found anything that can help me.
This plugin for ejabberd could be what you're looking for: a multi-user web interface to a Jabber chatroom.
Note that you'd need to set up your own Jabber server for this, but it's not extremely hard. (it's indeed "simple like google talk", except that Google Talk isn't too simple; note also that Google Talk is actually built on Jabber)