You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiMeetView.h 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 "JitsiMeetViewDelegate.h"
  19. @interface JitsiMeetView : UIView
  20. @property (nonatomic, nullable, weak) id<JitsiMeetViewDelegate> delegate;
  21. @property (copy, nonatomic) NSURL *defaultURL;
  22. @property (nonatomic) BOOL welcomePageEnabled;
  23. + (BOOL)application:(UIApplication *_Nonnull)application
  24. didFinishLaunchingWithOptions:(NSDictionary *_Nonnull)launchOptions;
  25. + (BOOL)application:(UIApplication * _Nonnull)application
  26. continueUserActivity:(NSUserActivity * _Nonnull)userActivity
  27. restorationHandler:(void (^ _Nullable)(NSArray * _Nullable))restorationHandler;
  28. + (BOOL)application:(UIApplication * _Nonnull)application
  29. openURL:(NSURL * _Nonnull)URL
  30. sourceApplication:(NSString * _Nullable)sourceApplication
  31. annotation:(id _Nullable)annotation;
  32. - (void)loadURL:(NSURL * _Nullable)url;
  33. - (void)loadURLObject:(NSDictionary * _Nullable)urlObject;
  34. - (void)loadURLString:(NSString * _Nullable)urlString;
  35. @end