Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

JitsiMeetView.h 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright @ 2017-present Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. #import <UIKit/UIKit.h>
  18. #import "InviteController.h"
  19. #import "JitsiMeetViewDelegate.h"
  20. @interface JitsiMeetView : UIView
  21. @property (copy, nonatomic, nullable) NSURL *defaultURL;
  22. @property (nonatomic, nullable, weak) id<JitsiMeetViewDelegate> delegate;
  23. @property (nonatomic, readonly, nonnull) JMInviteController *inviteController;
  24. @property (nonatomic) BOOL pictureInPictureEnabled;
  25. @property (nonatomic) BOOL welcomePageEnabled;
  26. + (BOOL)application:(UIApplication *_Nonnull)application
  27. didFinishLaunchingWithOptions:(NSDictionary *_Nonnull)launchOptions;
  28. + (BOOL)application:(UIApplication * _Nonnull)application
  29. continueUserActivity:(NSUserActivity * _Nonnull)userActivity
  30. restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler;
  31. + (BOOL)application:(UIApplication *)app
  32. openURL:(NSURL *)url
  33. options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options;
  34. + (BOOL)application:(UIApplication * _Nonnull)application
  35. openURL:(NSURL * _Nonnull)URL
  36. sourceApplication:(NSString * _Nullable)sourceApplication
  37. annotation:(id _Nullable)annotation __deprecated;
  38. - (void)loadURL:(NSURL * _Nullable)url;
  39. - (void)loadURLObject:(NSDictionary * _Nullable)urlObject;
  40. - (void)loadURLString:(NSString * _Nullable)urlString;
  41. @end