iphone

How to get the Temporary recorded videopath in iphone

I want to know is it possible to get the temporary path of the video that has been recorded in iphone?I want to create an app that record through iphone and then saved the video to a place where I want. ...

mask text inside uitextview/uiwebview

Hi folks, finally I choose to devote some time to find a way/implementation to mask text inside UITextView/UIWebView. By now what I'm able to do is: - add some custom background - add a uitextview/uiwebview with some text - add an UIImageView (with a covering png) or a CAGradientLayer to create a simple mask effect (*) Of course ...

how do i add a navigationViewController to a UIViewController?

how do i add a navigationViewController to a UIViewController? - (void)applicationDidFinishLaunching:(UIApplication *)application { loginViewController *vc1=[[loginViewController alloc]initWithNibName:@"login" bundle:[NSBundle mainBundle]]; rootViewController* vc2 = [[[rootViewController alloc] init] autorelease]; UI...

touch effect for Button in iphone

how can i just change the color,of a button when i set the focus on the button in iphone. I mean to say , for example we have 5 buttons, and i am just setting the focus on each of the button. i want those buttons to be higlighted with different color. but when press or touch up inside the utton, the navigation is made to the respectiv...

In App Purchase Verify certificate problem

I am getting the response as below. {"status":21002, "exception":"java.lang.NullPointerException"} I am encoding the receipt using Base64 only. I am testing it in sandbox. What will be the problem? Can anyone help me? ...

how to move image using UIAccelerometer?

How to move image when i am moving iphone? ...

how to get GPS Coordinates in iphone using Objective C

i want to get the GPS coordinates from iphone and send these GPS coordinates to web service. This web service, will take my GPS Coordinates and send me the location of the nearest ATM, from the current location. now i want to do this in 2 phases. First phase , i want to just send the GPS Coordinates to web service, and in return i want ...

how to create a login appliaction for iphone without others frame work

my application should accept user name and password...connect to server.then diasplay details from server.. i have done using XML parser .from server i will get XML file in my i phone using parser i displayed..now i need check for name an d password.so i don't have idea to create interface and all...so guide..me am going mad in it ...

Objective-C, class abstraction and accessing those variables

I have a lot of experience with java and c++ development, so classes and abstracting data is pretty easy for me. I only started objective C a short time ago, and i was mostly working with in class globals, and everything was progressing smoothly. I just decided to abstract a large portion of my code in an effort to make it less spaghetti...

UIProgressView background Image

Hello All, How to set Background image for UIProgressView as progress increase the image change. ...

navigating in iphone

how can we combine flipsideview controller and navigationcontroller in iphone ...

void SendDelegateMessage(NSInvocation*): delegate failed to return after waiting 10 seconds. how to remove this kind of messages

I am loading the data in the NSdata before viewdidload I got following message void SendDelegateMessage(NSInvocation*): delegate failed to return after waiting 10 seconds. main run loop mode: kCFRunLoopDefaultMode If you were not using the touch screen for this entire interval (which can prolong this wait), please file a bug. ...

How to empty cache for WebView?

Hi guys, I have a Webview that must load an image! When I upload this image I see every time the same image as before, and i must reboot my app to see the new image... I think is a cache problem..How can I solve that?? ...

Device Console Errors when Installing or Running App (Debug or Release Mode)

Hi there, I've noticed for a while that the iPhone app I'm developing takes a very long time to launch on a device, even though the app doesn't do much on startup (just basically shows a UIView!). I've just thought to check the device console in the Xcode Organiser and I'm seeing lots and lots of errors when launching the app from Xcod...

Iphone Caching Problem

Hello, when I call -(IBAction)goback:(id)sender { NSURL *xmlURL=[NSURL URLWithString:@"http://demo.komexa.com/sicherungsbereich.xml"]; NSURLRequest *request = [NSURLRequest requestWithURL:xmlURL cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:2]; NSURLResponse *theResponse; NSError *theError; NSData ...

Is there a way to get to know if the user is on call while using my app?

Is it possible to identify whether the user is on a phone call while using an app. Here is the scenario: I get a call I accept the call Tap the home button Launch an app At this point can I tell this app that a call is going on in background? Getting to know the screen is not a full blown option. Because it makes life difficult whe...

Has anyone know how to consume WCF Certificate based security WebServices from an iPhone app?

I'm trying to interact with a WCF web services using certificate based security and both message signature and encryption but with no luck. I had successfully implemented signature only communications, but when I create the elements I get an error verifying the message. Has anyone have any hints on how to implement this? Thanks!!! ...

Instrument finds leaks on Simulator, but not on the Device

Hi devs! I was tuning my iPhone app before submission to AppStore, when I noticed that Instrument finds a lot of memory leaks if I run in simulator|debug... but if I run it on the Device Instrument doesn't find any one.... To be honest, there were two leaks and I've fixed them. Now no leaks on the Device, but still too leaks on the Simul...

Drupal JSON POST from PhoneGap

I am trying to send a POST request to Drupal's Services module & JSON_Server module, however I am getting { "#error": true, "#data": "Invalid method " } Since PhoneGap runs html files from locally on the phone, should i need to worry about JSONP. The issue I have with that is that I must POST data, and JSONP only allows for GET. Any i...

MKAnnotation . CLicking on the text in MKAnnotation info view should call a number.

I am using a MKMapview to display a map in my Native iphone application and I add two markers to the map view. On clicking the annotation marker i want a phone number to be displayed and clicking on the phone number should make a call to the number. How can I do this ? ...