我已经搜索了所有问题,但似乎找不到我的答案。
我有以下 IBAction。每次点击电话号码时都会崩溃。我已经返回数据库并将电话号码格式化为 5551235555 而不是 (555)-123-5555。
- (IBAction)callPhone:(UIButton *)sender{
Bar *items = self.detailItem;
NSURL *pn = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", items.barPhone]];
[[UIApplication sharedApplication] openURL:pn];
}
- (void)setCallButton:(UIButton *)callButton{
Bar *items = self.detailItem;
[callButton setTitle:items.barPhone
forState:UIControlStateNormal];
}
任何代码指导都会被应用。