You could just see if it's an iPhone. And possibly use this in conjunction with - (BOOL)canOpenURL:(NSURL *)url
. That way you avoiding devices that obviously can't make a cellular phone call.
if ([[[UIDevice currentDevice] model] isEqualToString:@"iPhone"] ) {
// Make Phone Call
}