iphone-web

problem loading url in view

i'm confused about an error while i'm trying an url in a view. while compiling i get the following 2 errors (in h-file an in m-file): Expected identifier before '*' token maybe anybody can help me out of my trouble? thanks in advance! my code: File "RssWebViewController.h": #import "RssWebViewController.h" - (void)NavigateToUrl:(...

How can I make an iPhone reel like in FlickFishing?

Hi, I'm new in iPhone development, and I want to make a custom Reel/Spinner like the Reel in many iPhone fishing games, and I want capture the touch events, such as if the reel is moved to the right/left. Where should I start? Thank You! ...

syncing data with server

Hi all, I'm trying to sync data from my application onto the server. I'm very new to this kind of work. For this i wrote a small web service in php, insertData($_get['username'], $_get['password']); ?> Now, i'm not able to figure out how to call this web service and how to send the 2 variable values to the insertData function from th...

How can I create and maintain authentication sessions on an iPhone?

HI, i am about to create an iphone application that will have a account system . ( login/logout ) . that will have a server side also. so how to do session management. while your client is iphone how i can do that ?? ...

Detect closing of mobile Safari

I'm building a WebApp which uses video server push with: <img id="vidsrc" src="video.cgi"/> It works. And when saved as a WebApp using "Add to Home Screen" closing the app does as expected and stop receiving the server push. However when running in mobile Safari, only closing the page will get it to stop. What I'm trying to figure ou...

MFmailcomposer works fine in iphone but not in simulator!!

MFMailcomposer works fine in iphone but when run in simulator mails are not sent. and when sent from iphone if image is attached in mail it displays broken image. image is not clear. i am not getting what is the problem. right now i dont have device and from simulator its not sending mails. ...

What kind of support does the iphone/ipod touch have for the canvas tag? Especially in regards to text?

I have seen this question/answer: http://stackoverflow.com/questions/719848/how-do-you-draw-text-on-a-canvas-tag-in-safari But I looking for how to do it on an iphone. Does the iphone support it already? Also, it'd be nice to see a web page that discusses what the current iphone os/browser supports regarding canvas, html 5 and othe...

Iphone and php application

I created php pages.. those php pages are registration form.with the fields.FirstName,LastName and CompanyName...If I fill the information in that form and hit submit the data will store it on the mysql database.And I created one page...that displays the data which I have added through register form...I have a button on this page which d...

Running php application on cocoa

I want to run the php application on Cocoa-Xcode.How would I run my php application on XCODE? ...

iPhone autofill passwords

I can't get my iPhone to remember my username and password for the login to my website. The controls I currently have are: <input type="text" name="username" id="username" /> <input type="password" name="password" id="password" /> <select> <option value="1">option1</option> <option value="2">option2</option> </select <input type...

Detect Installed Application URI Handler on Webkit browsers

Guys, I have a question mainly related to the Iphone web browser but I am hoping the same solution would work on other browsers that are webkit based. I have a application (Iphone + Android) that registers a handler for custom URI (appuri://) on the Phone. I am able to launch the application by making a link to "appuri://act/launch" fr...

How does one properly cache/update data-driven iPhone apps that use remote databases?

My app is highly data driven, and needs to be frequently updated. Currently the MySQL database is dumped to an xml file via PHP, and when the app loads it downloads this file. Then it loads all the values in to NSMutableArray's inside of a data manager class which can be accessed anywhere in the app. Here is the issue, the XML file prod...

Sending a data to a Web server

Hi, I have already finished my iphone app, but I would to add some monitoring to it on my Web site. What I want is get a location of the device (state, country) that using my app and then after I got the location I want to send it to a Web Server. Then in my site I will create a report of how many user's of my app. I haven't work on W...

Quickest way to make a web app for iPhone

I am looking to make a iPhone app for a simple anonymous discussion website I launched this week (blurba.com). I would like it to be native, available for free download in the app store. I am looking for the fastest, easiest way to do this. I have been looking at these options. 1. Build a native app in Obj-C 2. Build with JQ tou...

Is there a way to detect Iphone if shaken via javascript ?

I have an iPhone version of my website. Is it possible to detect, using JavaScript, when the iPhone is shaken? Something along the lines of: <script> function shaken() { alert("you shaked !!!"); } < /script > <body onshake="shaken()"> ...

How do I trigger the popup dialog box automatically from iWebkit?

Hi there. I'm creating a little iphone webapp for my school using the iWebkit (fancy css/javascript for making the interface for iphone / ipod touch web sites / webapps. There is a feature called Popup which simulates a popup that you get in settings on your iPhone when you reset all settings (i.e. confirmation popup). How can I make ...

Native iPhone app in HTML/Javascript ?

I would like to build an app that heavily relies on Google Maps. Is it possible to write a native iPhone application in HTML/Javascript ? If so, will it be accessible from the app store ? Otherwise, how could I include Google Maps in a native app ? ...

jQTouch Spinning Wheel (Cubiq) Implementation Won't Work

I am trying to get a nice Spinning Wheel working within my webapp; http://bit.ly/89oWud However, I keep receiving an error within Mobile Safari that the variable 'blabla' cannot be found. I have implemented both of these suggested solutions: 1# Change SpinningWheelCSS 2# Change JQTouch CSS, JS files, and add JQTouch wrapper to body...

How to set popup menu values programatically in Dashcode

I am trying to set the values for a popup menu in Dashcode programatically. I can change the text/value of some statically defined default ones (from the inspector), but not add or remove them. When the view is initialised it must take a variable number of options. var popup = document.getElementById('popup'); //popup.options = ...

Get File Size information of File Requested in Download

Hi There, Is there a way to query the size of a file that was requested via http in objective c on iphone. I would like to find out file size prior to data being sent back so I can write a simple Download Progress indicator. Your help is much appreciated. Tony ...