Updated on 2022-07-19 GMT+08:00

Starting the App

Description

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

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

Service Process

  1. Create a scheme.
  2. Run the scheme.

Code Sample

// Start the app.
- (void)launchCloudLinkMeeting {
    NSURL *launchUrl = [NSURL URLWithString:@"cloudlink://welinksoftclient/h5page?page=launch"];
    if (@available(iOS 10.0, *)) {
        [[UIApplication sharedApplication] openURL:launchUrl options:@{} completionHandler:nil];
    } else {
        // Fallback on earlier versions
        [[UIApplication sharedApplication] openURL:launchUrl];
    }

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