Updated on 2023-03-23 GMT+08:00

60.7.1 Updates

  1. Optimized UIs and adjusted positions.
    • Meeting locking information was added to the meeting information on the top of the meeting page, and the UI was optimized.
    • Some functions in the More menu were moved to the Meeting settings menu under More.
  2. Optimized the APIs for customizing the meeting control menus, and replaced some APIs.
    The following is an example. For details about how to use the APIs, see API Reference.
    • Added APIs.
      1
      2
      3
      4
      5
      6
      /// Set a meeting menu.
      - (NSArray <HWMConfSettingGroup *> *)buildSettingItems;
      /// Customize the menu that appears in response to touches on the title bar of the meeting page.
      - (NSArray <HWMInMeetingCellModel *> *)buildTitleBarPopViewItems;
      /// Set the view (for example, add a watermark) for screen or whiteboard sharing. Do not add full-screen gestures.
      - (UIView *)screenShareCoverView;
      
    • Replaced APIs.
       1
       2
       3
       4
       5
       6
       7
       8
       9
      10
      11
      12
      13
      14
      /// Customize a meeting control menu at the bottom of a voice call and meeting.
      - (NSArray <HWMConfToolBarMenuItem *> *)buildAudioCallAndConfToolBarMenuItems;
      /// Customize a meeting control menu at the bottom of a video call and meeting.
      - (NSArray <HWMConfToolBarMenuItem *> *)buildVideoCallAndConfToolBarMenuItems;
      /// Customize the More menu at the bottom of a P2P video call.
      - (NSArray <HWMConfMenuItem *> *)buildVideoCallToolBarMoreMenuItems;
      /// Customize the More menu at the bottom of a video meeting.
      - (NSArray <HWMConfMenuItem *> *)buildVideoConfToolBarMoreMenuItems;
      
      Combined and replaced APIs.
      /// Customize a meeting control menu at the bottom.
      - (NSArray <HWMConfToolBarMenuItem *> *)buildToolBarMenuItems;
      /// Customize the More menu at the bottom.
      - (NSArray <HWMConfMenuListItem *> *)buildToolBarMoreMenuItems;
      
    • Deleted APIs.
      1
      2
      3
      4
      5
      6
      7
      8
      /// Customize a meeting control menu at the bottom of a voice call and meeting.
      - (NSArray <HWMConfToolBarMenuItem *> *)buildAudioCallAndConfToolBarMenuItems;
      /// Customize a meeting control menu at the bottom of a video call and meeting.
      - (NSArray <HWMConfToolBarMenuItem *> *)buildVideoCallAndConfToolBarMenuItems;
      /// Customize the More menu at the bottom of a P2P video call.
      - (NSArray <HWMConfMenuItem *> *)buildVideoCallToolBarMoreMenuItems;
      /// Customize the More menu at the bottom of a video meeting.
      - (NSArray <HWMConfMenuItem *> *)buildVideoConfToolBarMoreMenuItems;