iphone

UiimagePIckerController Interface with both camera and video

How can we display the UiImagepicker controller interface with both camera and video mode, as it is in the default camera application on iPhone. ...

how to interact with database of a website in iphone application

hi all i want to add signup and login feature to my iphone web application. the user will register himself/herself to website and his data will be store in database of that website. any idea or any tutorial links for it. i have just work on RSS application so far. thanks in advance. ...

Is iPhone Proximity detection possible with Bluetooth?

Hi everyone, Would it be possible to fill a building with 20 - 30 bluetooth devices that act as proximity detectors and write an app that can calculate location in the building based on distance from the current detected sensors. I've looked at the GameKit API, but I don't see anything about calculating distance from devices. Can some...

Creating photo albums

How do you create a photo album coding an iphone app that appears in the photo albums that sync to iPhoto? I can read and write media using the various classes (eg UiImagepickerController)no problems. Just wondering if that extends to being able to create albums also. ...

Server did not recognize the value of HTTP Header SOAPAction in iPhone?

Hi, I am try to connect webservices to my code i got error as "Server did not recognize the value of HTTP Header SOAPAction" NSString *soapMessage = [NSString stringWithFormat: @"\n" "\n" "\n" "\n" ...

Unused IBOutlets leaking

So, I'm loading by XIB file and it contains a set of UIBarButtonItems. Some of the items are used when the viewDidLoad: is called. @interface MyViewController : UIViewController { IBOutlet UIBarButtonItem *addButton; IBOutlet UIBarButtonItem *editButton; IBOutlet UIBarButtonItem *doneButton; } // NB: There are no properties ret...

Json framework does not work on iOS 4

Hi, is anybody able to use JSON framework on iPhone sdk 4,it is working fine on sdk 3.1.2 but not on iPhone sdk 4. ...

Problem with SQL statement

Hello, I have the following code: if(sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK) { // Setup the SQL Statement and compile it for faster access const char *sqlStatement = "select ZWAYPOINT_X, ZWAYPOINT_Y from ZWAYPOINT where ZMAP_ID %@", mapID; sqlite3_stmt *compiledStatement; if...

Passing data between iPhone apps

Disclaimer: This is a specific request by a client. I can't see how what I'm asking is possible, but I figured this community could give me a definitive answer. Is there a way to pass data between iPhone apps that are not in the same app suite? I understand that apps in the same app suite that use the same App ID can pass data via a sha...

connecting all benefit of facebook to iphone

hi sir , hello sir I need help to connect all benefit of Facebook to my iphone.The benefit is publishing story on wall and friends' home page. I done this think .But in 1st I connected with the Facebook and publish the comment go back to the story page or songs page and want to publish the comment on story or song on the wall. Here ...

File Permissions On The iPhone Simulator

Are the permissions for the iphone/ipad simulator different from the device itself? I only ask because I'm experimenting with file I/O, and creating and then writing to my own temporary file fails, but creating and writing to, say, the Desktop on my Mac (from the iPad simulator) is completely okay. Am I doing something wrong with my tem...

Change iphone settings based on device capabilities

Is it possible to hide certain application settings in standard Settings application based on current device capabilities? For example user can choose whether to show compass calibration UI or not, but I don't want to show this setting if device does not have a compass (e.g. iPhone 3g). Well, I think that is not possible actually but m...

UIlabel which can detect clickable text or urls.

How to implement a UiLabel which can implement clickable text and urls, i need this to use in a twitter application ...

Question about alert in webapp iphone

Hi, I write a webapp, I need to modify or catch automatic alert of safari such as "cannot open page. SAFARI cannot open the page because the address is invalid". is possible this?? Another question is: how to cache title of alert javascript? Best regards Samantha ...

UIWebView won't scroll till the end / bottom

Hi guys, I have the same problem as described here: http://stackoverflow.com/questions/2843299/uiwebview-doesnt-scroll-to-the-bottom-of-the-webpage-loaded-created (unfortunately nobody answered there) I have a UIWebView with inside UIView, and it doesn't scroll to the bottom, it's actually possible to scroll it but it is bouncing back a...

UIScrollView indicator always show?

Hi, its possible to make UIScrollView indicator always show? and not only when scrolling! Thank you. ...

CHUD/CHUD.h: No such file or directory or How to programmatically use shark with iPhone

Hi all, I've included #import <CHUD/CHUD.h> in my header files, and added "-F$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks" to my Framework Search Paths. I also added '-weak_framework CHUD' to my Other Linker Flags. I've tried copying the CHUD.framework folder from /System/Library/PrivateFrameworks to my iOS SDK's System/Librar...

Comments for my iPhone App

Hi, I have created my iPhone App and i must do a document like javaDoc in java but i don't find anything with google. I think that the comments have similar syntax but i'm not sure. (/* */) Can you help me? Thanks ...

iPhone universal static library works in Interface Builder in Release config but not in Debug

I followed the instructions here to create a static library of an iPhone class library. I built it in release mode. When I include it in another project, reference one of the classes in Interface Builder and run it in the simulator, I get an error if I run in Debug mode but it works in Release mode. I get the following error using the D...

Is there a way to find out if an IP address belongs to an iPhone?

I am trying to find a simple way to check if an IP address belongs to an iPhone. A solution that I can imagine is to use nmap to determine the operating system of the specified IP address and then check whether it's iOS.. Is this a right way? Otherwise, could anyone suggest me an alternative way? Thank you, Thanasis ...