'openURL:' устарел: первый устарел в iOS 10.0 - Пожалуйста, используйте openURL: параметры: завершениеHandler: вместо
в Objective-c iOS 10+ используйте:
NSString *phoneNumber = [@"tel://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber] options:@{} completionHandler:nil];