swift:
let control = UIControl()
control.sendAction(#selector(URLSessionTask.suspend), to: UIApplication.shared, for: nil)
objective-c:
UIControl *control = [UIControl new];
[control sendAction:@selector(suspend) to:[UIApplication sharedApplication] forEvent:nil];