This is how I implemented the exact same thing.
Have a call button, but only if it's an iPhone
Code:
NSString *deviceType = [UIDevice currentDevice].localizedModel;
if ([deviceType isEqualToString:@"iPhone"]) {
//if it's an iPhone, great - add the button to the bar
}else {
//if you have something else you would like to put there instead....
}