十一岁的加重songxing10000…… ------ 回到博主首页

打电话

- (BOOL)checkHardWareIsSupportCallHotLine
{
    
    BOOL isSupportTel = NO;
    
    NSURL *telURL = [NSURL URLWithString:@"tel://4008365365"];
    
    isSupportTel = [[UIApplication sharedApplication] canOpenURL:telURL];
    
    return isSupportTel;
    
}

- (void)callAPhoneNumber
{
    if ([self checkHardWareIsSupportCallHotLine]) {
        [_moreView.callWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"tel://4008365365"]]];
    }else{
        [self presentCustomDlg:L(@"Sorry, Unsupport call tel \n hotline: 4008-365-365")];
    }
}

 

posted @ 2015-12-07 13:39  songxing10000  阅读(178)  评论(0编辑  收藏  举报