Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright @ 2018-present 8x8, Inc.
  3. * Copyright @ 2017-2018 Atlassian Pty Ltd
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. #import <JitsiMeet/JitsiMeetView.h>
  18. #import <JitsiMeet/JitsiMeetViewDelegate.h>
  19. #import <JitsiMeet/JitsiMeetConferenceOptions.h>
  20. @interface JitsiMeet : NSObject
  21. /**
  22. * Name for the conference NSUserActivity type. This is used when integrating with
  23. * SiriKit or Handoff, for example.
  24. */
  25. @property (copy, nonatomic, nullable) NSString *conferenceActivityType;
  26. /**
  27. * Custom URL scheme used for deep-linking.
  28. */
  29. @property (copy, nonatomic, nullable) NSString *customUrlScheme;
  30. /**
  31. * List of domains used for universal linking.
  32. */
  33. @property (copy, nonatomic, nullable) NSArray<NSString *> *universalLinkDomains;
  34. /**
  35. * Default conference options used for all conferences. These options will be merged
  36. * with those passed to JitsiMeetView.join when joining a conference.
  37. */
  38. @property (nonatomic, nullable) JitsiMeetConferenceOptions *defaultConferenceOptions;
  39. #pragma mak - This class is a singleton
  40. + (instancetype)sharedInstance;
  41. #pragma mark - Methods that the App delegate must call
  42. - (BOOL)application:(UIApplication *_Nonnull)application
  43. didFinishLaunchingWithOptions:(NSDictionary *_Nonnull)launchOptions;
  44. - (BOOL)application:(UIApplication * _Nonnull)application
  45. continueUserActivity:(NSUserActivity * _Nonnull)userActivity
  46. restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler;
  47. - (BOOL)application:(UIApplication *)app
  48. openURL:(NSURL *)url
  49. options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options;
  50. #pragma mark - Utility methods
  51. - (JitsiMeetConferenceOptions *)getInitialConferenceOptions;
  52. @end