I am displaying Business card view on which I have one button on which I am setting Button title as phone number string which I got after parsing. I am getting perfect phone number string value on the button title. Now by pressing that button I want to call the default phone app so that User can call.

 -(void) BcardDisp: (id)sender
   {
BGView.hidden = NO;
if(BcardView.hidden == YES)
{

BcardView.hidden = NO;

NSIndexPath *selectedIndexPath = [self.tableView indexPathForSelectedRow];
    marker *aMarker = (marker *)[appDelegate.markers objectAtIndex:selectedIndexPath.row];
for (int selectedIndexPath = 0; selectedIndexPath < [appDelegate.markers count]; selectedIndexPath++)
{

ShowroomName.text = aMarker.name;
    Address_Bcard.numberOfLines=3;
    Address_Bcard.text =aMarker.address;

    [p_Bcard setTitle:[NSString stringWithFormat:@"%@",aMarker.phone]  forState:UIControlStateNormal];
}
    [self.tableView deselectRowAtIndexPath:selectedIndexPath animated:YES];
}

}

For Calling number I am using following action on Button.

 - (IBAction)callfrom_BcardVeiw
  {
marker *aMarker = [[marker alloc] init];
NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"%d",aMarker.phone]];

[[UIApplication sharedApplication] openURL:phoneNumberURL];
NSLog(@"%d",phoneNumberURL);

  } 

But I am not able to call.....getting grabage value. What logic should I put under my - (IBAction)callfrom_BcardVeiw ....so that I can call on the same number as Button title string.

link|improve this question

79% accept rate
Hello everyone...Can we also call the edit contact window by url. I am adding contact through application and I want to open the contact window with detail just have added so user can save or discard – Navnath Memane Dec 20 '11 at 12:33
feedback

3 Answers

up vote 1 down vote accepted

Try this:

NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",aMarker.phone]];
link|improve this answer
it still give me grabage value as 1051136 instead of "022 2294 8602" as I put NSLog.....not able to call:( – Navnath Memane Oct 25 '11 at 12:49
Try with %@ instead of %d, are you sure that the phone number are correctly? – gfdgfd Oct 25 '11 at 12:53
You create a object marker but didn't put any value to the object, unless you init with default value in the init methods, if you didn't aMarker.phone has a garbage value – gfdgfd Oct 25 '11 at 12:57
Yes I have set custom button tital as 022 2294 8602 which I am perfectely getting. But by pressing the same button giving action on it not working. – Navnath Memane Oct 25 '11 at 12:59
By the way I try %@ this....this opening call application with only 4 digit number. I mean iPhone call start with 6865 number instead of 022 2294 8602 – Navnath Memane Oct 25 '11 at 13:01
show 8 more comments
feedback

Prefix the phone URL with "tel://".

Be careful too, Is aMarker.phone an integer or a string?

In one part of your code you use "%d" so it assumes it is an integer, and in the other part of your code you use "%@", which assumes it is a NSObject, probably an NSString.

I bet the phone number is a string (as it can contains characters others than digits, namely "+" for intl prefixes, or "*" or "#" for some services...) so you need to use @"tel://%@" and not @"tel://%d" or it will format strange values in your URL (the address of the string in memory, to be precise) instead of the actual phone number.

On the other hand, if the phone number is an integer (would be strange but your use of "%d" makes me perplex) and you use "%@", your code will crash, trying to access description method on some integer value that is not an NSObject (it will consider the integer as an address of an NSObject in memory whereas it is not, which will explain the BAD_ACCESS)

link|improve this answer
Don't add the // just tel: will do, also allways ask the system if it can open the url. Because your app might be running on a iPad or iPod touch which will not allow the phone all. – rckoenes Oct 25 '11 at 12:50
yes By using %@ it is making phone call but only with 4 digit number 6855 instead of 022 2294 8602 – Navnath Memane Oct 25 '11 at 13:06
feedback

Remove any space, or other charters that are not needed:

NSString *phoneNumber = [aMarker.phone stringByReplacingOccurrencesOfString:@" " withString:@""];

NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", phoneNumber]];

if ([[UIApplication sharedApplication] canOpenURL:phoneNumberURL ]) {
   [[UIApplication sharedApplication] openURL:phoneNumberURL];
} else {
   // iPad or iPod Touch, can't make a call
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.