Updated on 2024-08-16 GMT+08:00

Starting the App

Description

Users can start the Huawei Cloud Meeting app by touching this link.

If the Huawei Cloud Meeting app has been started, the home screen will be displayed when a user touches the link.

Service Process

  1. Build a scheme.
  2. Run the scheme.

Code Sample

// Start the app.
- (void)launchCloudLinkMeeting {
    NSURL *launchUrl = [NSURL URLWithString:@"cloudlink://welinksoftclient/h5page?page=launch"];
    [[UIApplication sharedApplication] openURL:launchUrl options:@{} completionHandler:nil];
}

The preceding code is only a logical sample and cannot be directly used.