I'm trying to call phone number in my Iphone app.when i try to call phone number by using following code,alert with phone number is shown & when I press cancel alert dismisses but the view is also disappearing

-(void)callPhone:(NSURL *)url
{
    [viewWeb loadRequest:[NSURLRequest requestWithURL:url]];
}

-(IBAction)btnCallClicked:(id)sender
{
    [self callPhone:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", lblPhone.text]]];
}

How can I handle that,i used the same code in another app & it worked fine.Same code but different behavior & I don't know why((. Thanks in advance. P.S.if some more info is needed I'll try to provide just tell me)!!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.