我正在开发iphone应用程序,并且我有带电话号码的标签,我需要通过用户触摸电话号码拨打电话。我尝试使用以下代码,但没有拨打电话,我目前正在使用xcode模拟器进行检查。
我的代码,
在我的标题文件中
IBOutlet UILabel* lableMakeCall1;
@property(nonatomic,retain) UIView* lableMakeCall1;
我的.m文件包含
- (void)viewDidLoad
{
lableMakeCall1.userInteractionEnabled = YES;
UITapGestureRecognizer *tapGesture1 = \
[[UITapGestureRecognizer alloc]
initWithTarget:self action:@selector(didTapLabelWithGesture1:)];
[lableMakeCall1 addGestureRecognizer:tapGesture1];
}
- (void)didTapLabelWithGesture1:(UITapGestureRecognizer *)tapGesture1 {
NSString *phoneNumber = [@"tel://" stringByAppendingString:lableMakeCall1.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
/*
I tried in this code also
NSString *phoneNumber = [@"telprompt://" stringByAppendingString:lableMakeCall1.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];*/
}
答案 0 :(得分:1)
您需要在iPhone上进行测试,因为您无法在iOS模拟器上进行调用。您也无法在iPod Touch和iPad上拨打电话。