-1
다음 코드로 앱 안에서 전화를 걸 수 있습니다. 그러나 버튼을 클릭 할 때마다 아무 일도 일어나지 않습니다. 내가 뭘 잘못했는지 생각해?iOS에서 전화를 걸기 버튼 Xcode
- (void)phonePressed:(id)sender
{
UIButton *btn = (UIButton*)sender;
NSString *key = [self.dictArray.allKeys objectAtIndex:btn.tag];
NSMutableArray *arrData = [self.dictArray objectForKey:key];
NSMutableDictionary *dict = [arrData objectAtIndex:btn.tag];
UIApplication *application = [UIApplication sharedApplication];
NSURL *URL = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",[dict objectForKey:@"contact_phone"]]];
[application openURL:URL options:@{} completionHandler:^(BOOL success) {
if (success) {
NSLog(@"Opened url");
}
}];
}
아무도 dictArray이 무엇인지 모른다. –
Duplicate : https://stackoverflow.com/questions/27259824/calling-a-phone-number-in-swift –
dictArray를 표시 할 수 있습니까 ?? – luckyShubhra